summaryrefslogtreecommitdiff
path: root/output/negative/ExtendMissing.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-05-11 15:32:13 -0600
committerbd-912 <bdunahu@colostate.edu>2024-05-11 15:32:13 -0600
commit5677447c250dcf0c970fe7ce4ac51f47bf6d6da0 (patch)
treea5392fc636f01a4e517a211f557d5549444fd7e1 /output/negative/ExtendMissing.java
parent2a40b613252eb3d7a95624957dca61fdfa30dc2a (diff)
Changed SymbolTable to throw and exception when searching for missing entries
Diffstat (limited to 'output/negative/ExtendMissing.java')
-rw-r--r--output/negative/ExtendMissing.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/output/negative/ExtendMissing.java b/output/negative/ExtendMissing.java
deleted file mode 100644
index 72a487a..0000000
--- a/output/negative/ExtendMissing.java
+++ /dev/null
@@ -1,12 +0,0 @@
-class ExtendMissing {
- public static void main(String[] a){
- System.out.println(new Test().start());
- }
-}
-
-class Test extends NotPresent { //TE
-
- public int start(){
- return 0;
- }
-}