mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
impl = import "../should_ok/impl"
|
|
|
|
c = impl.C.new()
|
|
assert c + 1 == 1
|
|
assert c + 1 == c # ERR
|
|
assert c + -1 == c
|
|
assert c + -1 == -1 # ERR
|