cd20f31810
#KT-66447 Fixed
16 lines
395 B
Kotlin
Vendored
16 lines
395 B
Kotlin
Vendored
// LANGUAGE: +JavaTypeParameterDefaultRepresentationWithDNN
|
|
// ISSUE: KT-58933
|
|
// FILE: J.java
|
|
public interface J<T> {
|
|
void simple(T t);
|
|
void box(Box<T> box);
|
|
}
|
|
|
|
// FILE: test.kt
|
|
class Box<T>
|
|
|
|
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class K<!><T> : J<T> {
|
|
<!NOTHING_TO_OVERRIDE!>override<!> fun simple(t: T & Any) {}
|
|
<!NOTHING_TO_OVERRIDE!>override<!> fun box(box: Box<T & Any>) {}
|
|
}
|