diff options
Diffstat (limited to 'tests/java5/staticImports/StaticImport.aj')
-rw-r--r-- | tests/java5/staticImports/StaticImport.aj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/java5/staticImports/StaticImport.aj b/tests/java5/staticImports/StaticImport.aj new file mode 100644 index 000000000..3d82bcbeb --- /dev/null +++ b/tests/java5/staticImports/StaticImport.aj @@ -0,0 +1,9 @@ +// "import static java.lang.System.out" + +import static java.lang.System.out; + +public class StaticImport{ + public static void main(String [] args){ + out.println("hello world"); + } +} |