summaryrefslogtreecommitdiff
path: root/typecheck/tests/Operator.java
diff options
context:
space:
mode:
Diffstat (limited to 'typecheck/tests/Operator.java')
-rw-r--r--typecheck/tests/Operator.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/typecheck/tests/Operator.java b/typecheck/tests/Operator.java
deleted file mode 100644
index 732c905..0000000
--- a/typecheck/tests/Operator.java
+++ /dev/null
@@ -1,15 +0,0 @@
-class test01{
- public static void main(String[] a){
- System.out.println(new Operator().compute());
- }
-}
-
-class Operator{
-
- boolean result;
-
- public int compute(){
- result = true && false;
- return 0;
- }
-}