2024-12-10 20:40:17 +01:00

10 lines
230 B
Java

@annot
public class Main {
public static void main(String args[]) {
System.out.print("Foo");
AnnotSniffer.sniff(Main.class);
MyGeneric<Integer> a = new MyGeneric<>(10);
MyGeneric<?> b = new MyGeneric<>("asd");
}
}