diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-11-29 17:32:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-29 17:32:34 -0800 |
commit | 31a8cf16bbad69efbfbc6f7a593f2141cba06381 (patch) | |
tree | c7694e9f13aee85164617500abc09b5a78902531 /tests/destructor | |
parent | 6114df3c24e9c23bfbdbaa204bb100de9d170995 (diff) | |
download | Nim-31a8cf16bbad69efbfbc6f7a593f2141cba06381.tar.gz |
testament spec: remove errmsg alias of errormsg (#16188)
Diffstat (limited to 'tests/destructor')
-rw-r--r-- | tests/destructor/tdestructor_too_late.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/destructor/tdestructor_too_late.nim b/tests/destructor/tdestructor_too_late.nim index d279280ba..76d1dde84 100644 --- a/tests/destructor/tdestructor_too_late.nim +++ b/tests/destructor/tdestructor_too_late.nim @@ -1,5 +1,5 @@ discard """ - errmsg: "cannot bind another '=destroy' to: Obj; previous declaration was constructed here implicitly: tdestructor_too_late.nim(7, 16)" + errormsg: "cannot bind another '=destroy' to: Obj; previous declaration was constructed here implicitly: tdestructor_too_late.nim(7, 16)" """ type Obj* = object v*: int |