summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr147841/C.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs152/pr147841/C.java')
-rw-r--r--tests/bugs152/pr147841/C.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/bugs152/pr147841/C.java b/tests/bugs152/pr147841/C.java
deleted file mode 100644
index 3b6b49021..000000000
--- a/tests/bugs152/pr147841/C.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package pack;
-
-public class C {
-
- public C() {
- }
-
- public void method1() {
- new C().method2();
- }
-
- public void method2() {
- }
-
- public static void main(String[] args) {
- new C().method1();
- }
-
-}