summaryrefslogtreecommitdiff
path: root/typecheck/tests/Branch-error.java
diff options
context:
space:
mode:
Diffstat (limited to 'typecheck/tests/Branch-error.java')
-rw-r--r--typecheck/tests/Branch-error.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/typecheck/tests/Branch-error.java b/typecheck/tests/Branch-error.java
deleted file mode 100644
index bc58ff4..0000000
--- a/typecheck/tests/Branch-error.java
+++ /dev/null
@@ -1,11 +0,0 @@
-class Branch {
- public static void main(String[] a) {
- int a ;
- a = 3 ;
-
- if (a)
- System.out.println(1) ;
- else
- System.out.println(2) ;
- }
-}