Files
kotlin/idea/testData/multiModuleHighlighting/dependency/m3/m3.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 accessM3() {
<error>accessM1</error>()
accessM2()
accessM3()
<error>accessM4</error>()
}