cd717467f0
(cherry picked from commit 5c3ec6c)
9 lines
226 B
Kotlin
Vendored
9 lines
226 B
Kotlin
Vendored
// KT-6026 Exception on instantiating a nested class in an anonymous object
|
|
|
|
val oo = object {
|
|
// Forbidden in KT-13510
|
|
<!NESTED_CLASS_NOT_ALLOWED!>class Nested<!>
|
|
|
|
fun f1() = Nested(<!TOO_MANY_ARGUMENTS!>11<!>)
|
|
}
|