diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-23 16:12:44 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-23 16:12:44 -0600 |
commit | 3260ca09b23f197f408e686e8e2dd964d2ea9152 (patch) | |
tree | f3cdcece6fed99a5d377fb28e03543526caeb7d5 /boil/tests | |
parent | 12520b3e79d1050f8dd7ada09a06d49f19bd5401 (diff) |
Fix final bug introduced with BoilVisitor rewrite
Diffstat (limited to 'boil/tests')
-rw-r--r-- | boil/tests/ex44.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/boil/tests/ex44.java b/boil/tests/ex44.java new file mode 100644 index 0000000..d4131c2 --- /dev/null +++ b/boil/tests/ex44.java @@ -0,0 +1,15 @@ +class ex44{ + public static void main(String[] a){ + System.out.println(new Operator().compute()); + } +} + +class Operator{ + + boolean result; + + public int compute(){ + result = true && false; + return 0; + } +} |