Files
kotlin-fork/compiler/testData/diagnostics/tests/exposed/propertyInPrivateConstructor.fir.kt
T

4 lines
120 B
Kotlin
Vendored

private enum class Foo { A, B }
class Bar private constructor(val <!EXPOSED_PROPERTY_TYPE_IN_CONSTRUCTOR!>foo<!>: Foo)