aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs165/pr273628/TestPointcutAnnotationAspect.java
blob: 389054bb9d1b24d970c4544d7e00ce46e59417c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package p;

public class TestPointcutAnnotationAspect
{
    public static void main(String[] args)
    {
	AspectTargetClass c = new AspectTargetClass();
	try
	{
	    c.aspectTargetMethod();
	}
	catch ( Exception e )
	{
	    e.printStackTrace();
	}
//	System.exit(0);
    }
}