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