Files
strangepleasures 9688c3e761 [KAPT] Improve stub formatting; check raw stubs in tests
Merge-request: KT-MR-14244
Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
2024-02-09 15:41:37 +00:00

21 lines
393 B
Plaintext
Vendored

package test;
public abstract interface ListUpdateCallback {
public abstract void onInserted(int position, int count);
}
////////////////////
package test;
public final class Test<T extends java.lang.CharSequence, N extends java.lang.Number> {
@org.jetbrains.annotations.NotNull()
private final test.ListUpdateCallback x = null;
public Test() {
super();
}
}