blob: 99ba8e264543817526662a776877ba20f872f9b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import org.aspectj.testing.Tester;
public class ParenPrimitive {
public static void main(String[] args) {
Tester.checkEqual(typenameFor(null), "int");
}
private static String typenameFor(String type) {
return("int");
}
}
|