erg/tests/should_err/callable.er
Shunsuke Shibayama 5eb680cb21 fix: #415
2023-04-16 21:13:48 +09:00

15 lines
171 B
Python

print! 1 2 # ERR
f = 1
print! f 2 # ERR
f2 x: Int = x
print! f2(1) 2 # ERR
f3 x = x
print! f3(1) 2 # ERR
f4 x = (y) => x
print! f4(1) 2 # OK
_ = Array() [1, 2] # ERR