Files
kotlin-fork/idea/testData/safeDelete/deleteFunction/javaFunctionWithKotlin/mixedHierarchy1.kt
T
Alexey Sedunov 0b53ffe4d8 Restructure "Safe Delete" test data directories
Conflicts:
	generators/org/jetbrains/jet/generators/tests/GenerateTests.java
2013-07-29 19:24:27 +04:00

11 lines
200 B
Kotlin

trait B: A {
public override fun foo() {
throw UnsupportedOperationException()
}
}
class D: C() {
public override fun foo() {
throw UnsupportedOperationException()
}
}