diff options
Diffstat (limited to 'test/AbstractMethod/AbstractMethod.java')
-rw-r--r-- | test/AbstractMethod/AbstractMethod.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/AbstractMethod/AbstractMethod.java b/test/AbstractMethod/AbstractMethod.java deleted file mode 100644 index f40e9a9988..0000000000 --- a/test/AbstractMethod/AbstractMethod.java +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2011 Google Inc. All Rights Reserved. - -abstract class AbstractMethod { - abstract void callme(); - - public AbstractMethod() { - } -} - -class B extends AbstractMethod { - void callme() { - System.out.println("B's implementation of callme"); - } -} |