diff options
Diffstat (limited to 'tests/bugs150/pr71159/pkg1')
-rw-r--r-- | tests/bugs150/pr71159/pkg1/A.java | 7 | ||||
-rw-r--r-- | tests/bugs150/pr71159/pkg1/B.java | 3 | ||||
-rw-r--r-- | tests/bugs150/pr71159/pkg1/C.java | 7 |
3 files changed, 17 insertions, 0 deletions
diff --git a/tests/bugs150/pr71159/pkg1/A.java b/tests/bugs150/pr71159/pkg1/A.java new file mode 100644 index 000000000..f07afe231 --- /dev/null +++ b/tests/bugs150/pr71159/pkg1/A.java @@ -0,0 +1,7 @@ +package pkg1; + +public class A { + + //public void foo() {} + +}
\ No newline at end of file diff --git a/tests/bugs150/pr71159/pkg1/B.java b/tests/bugs150/pr71159/pkg1/B.java new file mode 100644 index 000000000..e931fe8c9 --- /dev/null +++ b/tests/bugs150/pr71159/pkg1/B.java @@ -0,0 +1,3 @@ +package pkg1; + +public class B {}
\ No newline at end of file diff --git a/tests/bugs150/pr71159/pkg1/C.java b/tests/bugs150/pr71159/pkg1/C.java new file mode 100644 index 000000000..48840a420 --- /dev/null +++ b/tests/bugs150/pr71159/pkg1/C.java @@ -0,0 +1,7 @@ +package pkg1; + +public class C { + + public void foo() {} + +}
\ No newline at end of file |