summaryrefslogtreecommitdiffstats
path: root/tests/java5/staticImports/StaticImport.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java5/staticImports/StaticImport.aj')
-rw-r--r--tests/java5/staticImports/StaticImport.aj9
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");
+ }
+}