KT-4524 Generate implementations fails on functions with default values
#KT-4524 Fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
trait T {
|
||||
fun foo(a:Int = 1)
|
||||
}
|
||||
|
||||
class C : T {
|
||||
override fun foo(a: Int) {
|
||||
<selection><caret>throw UnsupportedOperationException()</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user