diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-06-04 13:55:48 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-06-04 13:55:48 +0100 |
commit | 22f6017ab89e2fa7101c72e05a7703a83f1385d6 (patch) | |
tree | 8ce21bad48d7a9cbe37a49a09e600dd66d02e0b2 /tests/tuples | |
parent | ccb9ae2d52cc42f2489a7bbd758c924a4dbbe872 (diff) | |
download | Nim-22f6017ab89e2fa7101c72e05a7703a83f1385d6.tar.gz |
Fixes #2584
Better compiler errors for accessing undeclared fields, calling undeclared procedures and procedure fields.
Diffstat (limited to 'tests/tuples')
-rw-r--r-- | tests/tuples/twrongtupleaccess.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tuples/twrongtupleaccess.nim b/tests/tuples/twrongtupleaccess.nim index 1a9ae64a2..3ff967eea 100644 --- a/tests/tuples/twrongtupleaccess.nim +++ b/tests/tuples/twrongtupleaccess.nim @@ -1,7 +1,7 @@ discard """ file: "twrongtupleaccess.nim" line: 9 - errormsg: "undeclared identifier: \'setBLAH\'" + errormsg: "attempting to call undeclared procedure field: \'setBLAH\'" """ # Bugfix |