Files
2021-10-27 19:43:01 +03:00

7 lines
211 B
Kotlin
Vendored

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