0b53ffe4d8
Conflicts: generators/org/jetbrains/jet/generators/tests/GenerateTests.java
11 lines
200 B
Kotlin
11 lines
200 B
Kotlin
trait B: A {
|
|
public override fun foo() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|
|
|
|
class D: C() {
|
|
public override fun foo() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |