Files
kotlin/idea/testData/multiModuleHighlighting/dependency/m2/m2.kt
Pavel V. Talanov d6bd4535fa Introduce MultiModuleHighlightingTest
Checks that analysis produces expected diagnostics when configured by real IDEA module
2014-08-22 22:59:03 +04:00

8 lines
128 B
Kotlin
Vendored

package foo
public fun accessM2() {
accessM1()
accessM2()
<error>accessM3</error>()
<error>accessM4</error>()
}