3d8d92c7d3
- test data files renamed from *.jet to *.kt
14 lines
201 B
Kotlin
14 lines
201 B
Kotlin
//KT-2069 Cannot call super method when superclass has type parameters
|
|
package kt2069
|
|
|
|
trait T1 {
|
|
fun foo() {}
|
|
}
|
|
|
|
class T : T1 {
|
|
fun bar() {
|
|
super<T1>.foo()
|
|
}
|
|
|
|
class object {}
|
|
} |