summaryrefslogtreecommitdiff
path: root/typecheck/tests/SimpleArithmetic.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-03-27 13:09:08 -0600
committerbd-912 <bdunahu@colostate.edu>2024-03-27 13:09:08 -0600
commit8131ddc22af5d39114a55349d71bcdc467599187 (patch)
tree9aaa7b984f223b1b405bb1598982ea992eeba67d /typecheck/tests/SimpleArithmetic.java
parente8af241aa57104d62c25c8bcbc2df76510998bf9 (diff)
Expand file structure, Vaporize skeleton
Diffstat (limited to 'typecheck/tests/SimpleArithmetic.java')
-rw-r--r--typecheck/tests/SimpleArithmetic.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/typecheck/tests/SimpleArithmetic.java b/typecheck/tests/SimpleArithmetic.java
new file mode 100644
index 0000000..94c780e
--- /dev/null
+++ b/typecheck/tests/SimpleArithmetic.java
@@ -0,0 +1,6 @@
+class SimpleArithmetic{
+ public static void main(String[] a){
+ int x;
+ x = 1 + 2;
+ }
+}