Files
pyos e54ef3bdb8 PSI2IR: ignore enum annotation arguments of error type
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.
2019-12-26 10:10:29 +03:00

8 lines
65 B
Kotlin
Vendored

package c
import b.B
class C : B() {
fun bar() = foo("")
}