summaryrefslogtreecommitdiffstats
path: root/tests/features152/synchronization/Parsing2.java
blob: f0d4a1cbbb538bb01f1a5d221660c01d30723efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Exploring synchronization

public aspect Parsing2 {

	before(): unlock() { }
	
	public static void main(String[] args) {
		staticM();
	}
	
	public static void staticM() {
//		synchronized (String.class) {}
	}
}