diff options
Diffstat (limited to 'tests/accept/run/toverlop.nim')
-rwxr-xr-x | tests/accept/run/toverlop.nim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/accept/run/toverlop.nim b/tests/accept/run/toverlop.nim index f11275644..ce302345f 100755 --- a/tests/accept/run/toverlop.nim +++ b/tests/accept/run/toverlop.nim @@ -1,3 +1,7 @@ +discard """ + file: "toverlop.nim" + output: "3" +""" # Test operator overloading proc `%` (a, b: int): int = @@ -8,3 +12,5 @@ x = 15 y = 6 write(stdout, x % y) #OUT 3 + + |