actually add imul test case

This commit is contained in:
David Gonzalez Martin 2023-11-12 20:25:18 -06:00
parent 752fe9e115
commit 4d1d5fa1c0
2 changed files with 5 additions and 6 deletions

View File

@ -2,13 +2,7 @@ name: CI
on: on:
pull_request: pull_request:
paths:
- ".github/workflows/ci.yml"
- "**.zig"
push: push:
paths:
- ".github/workflows/ci.yml"
- "**.zig"
branches: branches:
- main - main
schedule: schedule:

5
test/imul/main.nat Normal file
View File

@ -0,0 +1,5 @@
const main = fn () s32 {
const a: s32 = 5;
const b: s32 = 4;
return 5 * 4 - a * b;
}