diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-09-04 08:18:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 08:18:00 +0200 |
commit | ac7acd827cd05ea916c53513e68d13be0d63a604 (patch) | |
tree | 5e8c01e1f5da7ad1cf0c53f8b8105a9d48ae5a2b /lib/system.nim | |
parent | cddf8ec6f684e5636a114e0e286bc6609e01f228 (diff) | |
download | Nim-ac7acd827cd05ea916c53513e68d13be0d63a604.tar.gz |
we need something better than warningAsError for effect handling viol… (#18796)
* we need something better than warningAsError for effect handling violations
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index 740c4419f..c93af0854 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2004,8 +2004,7 @@ elif hasAlloc: inc(i) {.pop.} -proc echo*(x: varargs[typed, `$`]) {.magic: "Echo", tags: [WriteIOEffect], - benign, sideEffect.} +proc echo*(x: varargs[typed, `$`]) {.magic: "Echo", benign, sideEffect.} ## Writes and flushes the parameters to the standard output. ## ## Special built-in that takes a variable number of arguments. Each argument |