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,17 @@
package some
import enums.E
import enums.Base
fun f(<warning>e</warning>: Base) {
}
fun test() {
f(E.E1)
f(E.E2)
f(E.E3)
f(E.<error>E4</error>)
f(E.<error>Invalid</error>)
E.E1.f()
}