mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 12:48:12 +07:00
GitOrigin-RevId: c2b80cba6397b1924fe1d655e3b1dbd9f36c2fe0
26 lines
815 B
Plaintext
26 lines
815 B
Plaintext
package org.example;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class TestAnnotationExtendObjectStaticMethods {
|
|
public static void main(String[] args) {
|
|
}// 8
|
|
|
|
public static native <T extends @Nullable Object> Iterable<T> concat(Iterable<? extends T> var0, Iterable<? extends T> var1);
|
|
|
|
public static native <T extends @Nullable String> Iterable<T> concat2(Iterable<? extends T> var0, Iterable<? extends T> var1);
|
|
|
|
public static native <T extends String> Iterable<T> concat3(Iterable<? extends T> var0, Iterable<? extends T> var1);
|
|
|
|
public static native <T> Iterable<T> concat4(Iterable<? extends T> var0, Iterable<? extends T> var1);
|
|
}
|
|
|
|
class 'org/example/TestAnnotationExtendObjectStaticMethods' {
|
|
method 'main ([Ljava/lang/String;)V' {
|
|
0 6
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
8 <-> 7
|