resolve llvm types for function parameters

This commit is contained in:
Luna 2019-09-24 13:32:00 -03:00
parent e25621350a
commit 1ac63cdbef
2 changed files with 7 additions and 5 deletions

View file

@ -1,6 +1,6 @@
// import std;
fn add() i32 {
fn add(a: i32, b: i32) i32 {
return 69 + 69;
}