Files
kotlin-fork/compiler/testData/diagnostics/tests/exposed/propertyInPrivateConstructorError.kt
T
2021-10-27 19:43:01 +03:00

7 lines
209 B
Kotlin
Vendored

// FIR_IDENTICAL
// !LANGUAGE: +ForbidExposingTypesInPrimaryConstructorProperties
private enum class Foo { A, B }
class Bar private constructor(val <!EXPOSED_PROPERTY_TYPE_IN_CONSTRUCTOR_ERROR!>foo<!>: Foo)