Files
kotlin-fork/nj2k/testData/newJ2k/objectLiteral/AccesssThisInsideAnonClass.kt
T

14 lines
254 B
Kotlin
Vendored

// ERROR: 'public' function exposes its 'internal' parameter type Foo
internal interface Foo
class Bar {
fun test() {
object : Foo {
fun foo() {
bug(this)
}
}
}
fun bug(foo: Foo?) {}
}