03641ffbee
#KT-8467 In Progress
13 lines
156 B
Kotlin
Vendored
13 lines
156 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// DISABLE-ERRORS
|
|
interface T<X> {
|
|
fun <caret>foo(x: X): X
|
|
}
|
|
|
|
enum class E : T<Int> {
|
|
A, B, C;
|
|
|
|
val bar = 1
|
|
|
|
fun baz() = 2
|
|
} |