aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr262350/Test3.java
blob: df50dba37f6635c68605d91d748f9bab0fa08148 (plain)
1
2
3
4
5
6
7
8
9
10
public class Test3 {
	public void m0() {
		synchronized (this) {
			synchronized ("Hello") {
				System.out.println("Hello World");
			}

		}
	}
}