Files
kotlin/compiler/testData/codegen/defaultArguments/reflection/publicInnerClassInPrivateClass.kt
Alexander Udalov 5d92453532 Inaccessible outer class member is now an error
#KT-1174 In Progress
2013-01-16 23:11:41 +04:00

7 lines
115 B
Kotlin
Vendored

private class A {
public inner class Foo(val a: Int = 1) {}
}
// CLASS: A$Foo
// HAS_DEFAULT_CONSTRUCTOR: false