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