Add MultiFileHighlightingTest which checks that other files are not parsed during highlighting

This commit is contained in:
Pavel V. Talanov
2014-04-22 18:27:46 +04:00
parent b3898cfb0d
commit c9eb313ec4
10 changed files with 291 additions and 0 deletions
@@ -0,0 +1,18 @@
package enums
trait Base {
fun f() {
}
}
enum class E(val i: Int = 0): Base {
E1: E() {
override fun f() {
}
}
E2: E(3) {
override fun f() {
}
}
E3
}