Introduce HighlightingWithDependentLibrariesTest

This tests that LibraryInfo dependencies affect source files highlighting
This commit is contained in:
Pavel V. Talanov
2014-09-29 21:11:25 +04:00
parent e25cbcd961
commit a8d77887af
9 changed files with 127 additions and 19 deletions
@@ -0,0 +1,17 @@
package lib2
import lib1.*
public class Derived(): Base() {
public fun derivedFun() {
}
}
public fun acceptBase(b: Base) {
}
public fun returnBase(): Base = Base()
public fun Base.extendBase(): Unit {
}