2dd47d6339
Reference compacting must be done before adding body to class.
10 lines
172 B
Plaintext
10 lines
172 B
Plaintext
// From KT-1254
|
|
trait T {
|
|
fun Foo() : (String) -> Unit
|
|
}
|
|
|
|
class C : T {
|
|
override fun Foo(): (String) -> Unit {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |