From 8131ddc22af5d39114a55349d71bcdc467599187 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Wed, 27 Mar 2024 13:09:08 -0600 Subject: Expand file structure, Vaporize skeleton --- typecheck/tests/Branch.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 typecheck/tests/Branch.java (limited to 'typecheck/tests/Branch.java') diff --git a/typecheck/tests/Branch.java b/typecheck/tests/Branch.java new file mode 100644 index 0000000..43df01f --- /dev/null +++ b/typecheck/tests/Branch.java @@ -0,0 +1,11 @@ +class Branch { + public static void main(String[] a) { + boolean b ; + b = false ; + + if (b) + System.out.println(1) ; + else + System.out.println(2) ; + } +} -- cgit v1.2.3