summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr119210/ThreadAspectLib2.java
blob: 1794c0a4d18eff468237536575cc5402688c348e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public aspect ThreadAspectLib2 {
//        pointcut setThreadLocalsField(): set(private int TestLib.myInt);
//
//        Integer around():setThreadLocalsField()
//        {
//                try{
//                        return new Integer(2);
//                }
//                catch(Exception e)
//                {
//                        e.printStackTrace();
//                        return null;
//                }
//        }
        
        int around(): call(* getFive()) {
        	return 3;
        }
}