init commit
This commit is contained in:
11
test/wrong_argument_count.shd
Normal file
11
test/wrong_argument_count.shd
Normal file
@@ -0,0 +1,11 @@
|
||||
foo :: (x : float, y : float, z : float) -> float {
|
||||
return x * y * z;
|
||||
}
|
||||
foo :: (x : float, y : float, z : float, w : float) -> float {
|
||||
return x * y * z * w;
|
||||
}
|
||||
|
||||
vertex main :: () {
|
||||
foo(2.0, 3.0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user