Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/kt6026.kt
T
2014-10-18 11:06:53 +04:00

8 lines
166 B
Kotlin
Vendored

// KT-6026 Exception on instantiating a nested class in an anonymous object
val oo = object {
class Nested
fun f1() = Nested(<!TOO_MANY_ARGUMENTS!>11<!>)
}