Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/errCallable.txt
T
2020-03-19 09:51:01 +03:00

28 lines
776 B
Plaintext
Vendored

FILE: errCallable.kt
public final class Your : R|kotlin/Any| {
public constructor(): R|Your| {
super<R|kotlin/Any|>()
}
public final class Nested : R|kotlin/Any| {
public constructor(): R|Your.Nested| {
super<R|kotlin/Any|>()
}
}
}
public final class My : R|kotlin/Any| {
public constructor(): R|My| {
super<R|kotlin/Any|>()
}
public final fun foo(): R|kotlin/Unit| {
lval x: <ERROR TYPE REF: No result type for initializer> = ::<Unresolved name: Nested>#
}
}
public final fun R|Your|.foo(): R|kotlin/Unit| {
lval x: <ERROR TYPE REF: No result type for initializer> = ::<Unresolved name: Nested>#
}