f202a5c31d
#KT-4524 Fixed
9 lines
164 B
Plaintext
9 lines
164 B
Plaintext
trait T {
|
|
fun foo(a:Int = 1)
|
|
}
|
|
|
|
class C : T {
|
|
override fun foo(a: Int) {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
} |