aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr262350/Test4.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs164/pr262350/Test4.java')
-rw-r--r--tests/bugs164/pr262350/Test4.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs164/pr262350/Test4.java b/tests/bugs164/pr262350/Test4.java
new file mode 100644
index 000000000..df50dba37
--- /dev/null
+++ b/tests/bugs164/pr262350/Test4.java
@@ -0,0 +1,10 @@
+public class Test3 {
+ public void m0() {
+ synchronized (this) {
+ synchronized ("Hello") {
+ System.out.println("Hello World");
+ }
+
+ }
+ }
+}