TP-metaprogrammation-test/TP5/WrongUseOfUtility.java

13 lines
150 B
Java
Raw Permalink Normal View History

2023-06-21 18:09:35 +00:00
public class WrongUseOfUtility {
@Utility
private WrongUseOfUtility() {}
@Utility
static void m(@Utility int n) {}
@Utility
static int a;
}