mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
10 lines
204 B
Nim
10 lines
204 B
Nim
##.
|
|
import system except `+`
|
|
discard """
|
|
errormsg: "undeclared identifier: '+'"
|
|
line: 9
|
|
"""
|
|
# Testament requires that the initial """ occurs before the 40th byte
|
|
# in the file. No kidding...
|
|
echo 4+5
|