speedcat/test_type_checker.cat
Slendi eb258c8f4c Improve error message logging for function calls
Signed-off-by: Slendi <slendi@socopon.com>
2024-02-28 16:19:01 +02:00

9 lines
114 B
Plaintext

let asdf := 123.0
let poop :: 12.0 + 2.0 * asdf
fn name(a b: f32) i32 {
ret (a + b) as i32
}
name 123 456.0