8 lines
109 B
Kotlin
Vendored
8 lines
109 B
Kotlin
Vendored
// PROBLEM: none
|
|
enum class Foo {
|
|
ONE,
|
|
TWO;
|
|
val bar = Bar(<caret>this)
|
|
}
|
|
|
|
class Bar(val foo: Foo) |