e54ef3bdb8
Similar to references to error type, this may happen if library A uses an entity from library B annotated with an annotation from C, but A is compiled without C on the classpath.
8 lines
65 B
Kotlin
Vendored
8 lines
65 B
Kotlin
Vendored
package c
|
|
|
|
import b.B
|
|
|
|
class C : B() {
|
|
fun bar() = foo("")
|
|
}
|