9 lines
168 B
Plaintext
Vendored
9 lines
168 B
Plaintext
Vendored
interface T {
|
|
fun foo(a:Int = 1)
|
|
}
|
|
|
|
class C : T {
|
|
override fun foo(a: Int) {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
} |