aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/SynchronizedPlain.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/lombok/resource/after/SynchronizedPlain.java')
-rw-r--r--test/lombok/resource/after/SynchronizedPlain.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/lombok/resource/after/SynchronizedPlain.java b/test/lombok/resource/after/SynchronizedPlain.java
new file mode 100644
index 00000000..fcbe03f2
--- /dev/null
+++ b/test/lombok/resource/after/SynchronizedPlain.java
@@ -0,0 +1,26 @@
+class SynchronizedPlain1 {
+ void test() {
+ synchronized ($lock) {
+ System.out.println("one");
+ }
+ }
+ void test2() {
+ synchronized ($lock) {
+ System.out.println("two");
+ }
+ }
+ private final java.lang.Object $lock = new java.lang.Object[0];
+}
+class SynchronizedPlain2 {
+ static void test() {
+ synchronized ($LOCK) {
+ System.out.println("three");
+ }
+ }
+ static void test2() {
+ synchronized ($LOCK) {
+ System.out.println("four");
+ }
+ }
+ private static final java.lang.Object $LOCK = new java.lang.Object[0];
+} \ No newline at end of file