aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/staticImports/StaticImport.aj
blob: 3d82bcbeb32f0eb177fa8a3678b1569c8f6191f2 (plain)
1
2
3
4
5
6
7
8
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");
 }
}