Added placeholders for type casts

This commit is contained in:
Eduard Urbach 2025-02-27 00:18:34 +01:00
parent f87cda97e2
commit a905710982
Signed by: eduard
GPG key ID: 49226B848C78F6C8
19 changed files with 61 additions and 42 deletions

8
tests/programs/cast.q Normal file
View file

@ -0,0 +1,8 @@
main() {
x := byte(42)
assert f(x) == 42
}
f(x byte) -> byte {
return x
}