9 lines
199 B
Kotlin
Vendored
9 lines
199 B
Kotlin
Vendored
// KT-6026 Exception on instantiating a nested class in an anonymous object
|
|
|
|
val oo = object {
|
|
// Forbidden in KT-13510
|
|
class Nested
|
|
|
|
fun f1() = <!INAPPLICABLE_CANDIDATE!>Nested<!>(11)
|
|
}
|