aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr164384/Hello.java
blob: c5d23b9df302c022b4fcc273ed06dd38d6e9fdfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package pkg;

public class Hello {
	
	@MyAnnotation
	public void sayHello() {
		System.out.println("hello");
		int counter = 0;
		for (int i = 0; i < 10; i++) {
			counter = i;
		}
		
	}
	
}