Files
kotlin-fork/compiler/testData/javaModules/noDependencyOnUnnamed/main/usage.kt
T
Alexander Udalov 9fcf6c5f89 JVM: add tests on some JPMS-related diagnostics
Somehow we ended up in the state where we have two diagnostics which are
not covered by any tests in the project. This commit adds simple tests
for them.

 #KT-60797
2024-02-09 18:06:02 +00:00

8 lines
78 B
Kotlin
Vendored

import foo.*
fun test(foo: Foo) {
foo.field
foo.method()
Foo()
}