summaryrefslogtreecommitdiffstats
path: root/src/test/misc/en/Foo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/misc/en/Foo.java')
-rw-r--r--src/test/misc/en/Foo.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/test/misc/en/Foo.java b/src/test/misc/en/Foo.java
deleted file mode 100644
index 762dcda..0000000
--- a/src/test/misc/en/Foo.java
+++ /dev/null
@@ -1,52 +0,0 @@
-package test.misc.en;
-
-class Foo {
-
- public Foo() {}
-
- public Foo(String test) {}
-
- private void foo() {
- System.out.println("qwe");
- }
-
- static class Bar extends Foo {
- void bar() {
- System.out.println("1");
- //((Foo)this).foo();
- }
- }
-
- static class Bar1 extends Bar {
- void bar() {
- super.bar();
- //System.out.println("2");
- //((Foo)this).foo();
- }
- }
-
- static class Bar2 extends Bar1 {
- void bar1() {
- super.bar();
- }
- }
-
- public static void main(String[] args) {
- new Bar2().bar();
- }
-
- public int testfin() {
-
- int i;
-
- try {
- System.out.println();
- i = 0;
- } finally {
- System.out.println();
- }
-
-
- return i;
- }
-}