summaryrefslogtreecommitdiff
path: root/test/AbstractMethod/AbstractMethod.java
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2011-09-22 14:16:31 -0700
committer Ian Rogers <irogers@google.com> 2011-09-22 16:59:56 -0700
commita0841a83323a82e3bed3d0b5f2e6ec3795f496be (patch)
treede2812c45564635af1445260ad52dd42272104e9 /test/AbstractMethod/AbstractMethod.java
parentcbba6ac9bf9a6c630a7aafae6d8767b5ddbb6fd5 (diff)
Abstract Method Error unit test and fixes.
Change-Id: I14015ffd9f8adca9d0b2d90b91811c920b13716d
Diffstat (limited to 'test/AbstractMethod/AbstractMethod.java')
-rw-r--r--test/AbstractMethod/AbstractMethod.java14
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");
- }
-}