Pull Up: Java -> Kotlin interoperability
#KT-5803 Fixed
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// INFO: {"checked": "true"}
|
||||
interface X<T, U> {
|
||||
|
||||
}
|
||||
|
||||
// INFO: {"checked": "false"}
|
||||
interface Y<V> {
|
||||
|
||||
}
|
||||
|
||||
// INFO: {"checked": "true"}
|
||||
interface Z<T> {
|
||||
|
||||
}
|
||||
|
||||
class P {
|
||||
|
||||
}
|
||||
|
||||
class <caret>B<S, U, V> extends A<S> implements X<P, S>, Y<U>, Z<V> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user