summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr148727/Client.java
blob: 2ced473f42572b4ac6ea81f12407329a444e7591 (plain)
1
2
3
4
5
6
7
public class Client {
    public static void main(String argz[]) {
        if (!Asp.hasAspect()) 
          throw new RuntimeException("ou est le aspect?");
        System.out.println("Can call aspectOf? "+Asp.aspectOf());
    }
}