projects
/
IRC.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
change
[IRC.git]
/
Robust
/
src
/
Tests
/
Atomic.java
1
public class Atomic {
2
int a;
3
public static void main(String[] st) {
4
Integer z;
5
atomic {
6
z=global new Integer(3);
7
}
8
int q=test(z);
9
System.printInt(q);
10
System.printString("\n");
11
}
12
public static atomic int test(Integer y) {
13
return y.intValue();
14
}
15
}