3d8d92c7d3
- test data files renamed from *.jet to *.kt
14 lines
256 B
Kotlin
Vendored
14 lines
256 B
Kotlin
Vendored
open class A {
|
|
open fun foo(a : Int) {}
|
|
}
|
|
|
|
class C : A() {
|
|
override fun foo(a : Int = <!DEFAULT_VALUE_NOT_ALLOWED_IN_OVERRIDE!>1<!>) {
|
|
}
|
|
}
|
|
|
|
class D : A() {
|
|
override fun foo(a : Int = <!DEFAULT_VALUE_NOT_ALLOWED_IN_OVERRIDE!>1<!>) {
|
|
}
|
|
}
|