Files
kotlin-fork/jps-plugin/testData/incremental/multiModule/simpleDependencyErrorOnAccessToInternal2/module2_b.kt.new
T

13 lines
188 B
Plaintext
Vendored

@file:InternalFileAnnotation
package b
import a.InternalFileAnnotation
import a.InternalClassAnnotation
@InternalClassAnnotation
class B
fun b(param: a.InternalA) {
a.internalA()
}