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,9 @@
package lib1
public open class Base {
public open fun baseFun() {
}
}
public fun acceptBase(b: Base) {
}