diff options
| author | Mustafa Quraish <[email protected]> | 2022-02-03 03:06:58 -0500 |
|---|---|---|
| committer | Mustafa Quraish <[email protected]> | 2022-02-03 03:08:55 -0500 |
| commit | 202fe666d4b5b69131a09a3911cf8c3828b720d8 (patch) | |
| tree | 00d6e4165192b6f684e9f3dfad1fcdbd6cf13f80 /tests | |
| parent | Move all common utilities to `std/common.cup` (diff) | |
| download | cup-202fe666d4b5b69131a09a3911cf8c3828b720d8.tar.xz cup-202fe666d4b5b69131a09a3911cf8c3828b720d8.zip | |
Allow implicitly converting between integer-like-types
This design should also be useful for structs down the road.
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/core.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core.sh b/tests/core.sh index 7b62208..0a9c331 100755 --- a/tests/core.sh +++ b/tests/core.sh @@ -107,7 +107,7 @@ echo " OK" echo -n "- Importing file: " assert_exit_status_stdin 10 <<EOF -import "std/math.cup" +import "std/common.cup" fn main(): int { let x: int = abs(-5); |