aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr171953/test/SecondTestExecutable.java
blob: 1743a972862f086e95e9f908d9a09bc886bb5cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test;

public class SecondTestExecutable extends AbstractExecutable {

	public void execute() {
		// should not happen because of ExecutionAspect prevents execution
		throw new RuntimeException();
	}
	
	public static void main(String[] args) {
		new SecondTestExecutable().execute(); 
	} 
}