c251eb19a6
In this commit, .ir.txt expectation test data files for the JVM IR backend are renamed to .txt. This is done as two separate commits so that Git would recognize that these files were logically moved, not that the contents of the original .txt files were changed. #KT-64680
23 lines
619 B
Plaintext
Vendored
23 lines
619 B
Plaintext
Vendored
package test;
|
|
|
|
public final class Test<T extends java.lang.CharSequence, N extends java.lang.Number> {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final test.TypedListUpdateCallback<java.lang.String, java.lang.Long> x = null;
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
public abstract interface TypedListUpdateCallback<T extends java.lang.Object, C extends java.lang.Number> {
|
|
|
|
public abstract void onInserted(@org.jetbrains.annotations.NotNull()
|
|
C position, @org.jetbrains.annotations.NotNull()
|
|
C count, @org.jetbrains.annotations.NotNull()
|
|
T item);
|
|
}
|