diff options
author | flywind <xzsflywind@gmail.com> | 2021-06-22 18:44:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 12:44:56 +0200 |
commit | 037715285c088af46c94939f36abef63c95406e8 (patch) | |
tree | b877135b59211340860f529aa253ca875989d64d /tests/errmsgs | |
parent | d8488e41e85c84a6b5fe687940b7fee10314d1f1 (diff) | |
download | Nim-037715285c088af46c94939f36abef63c95406e8.tar.gz |
fix #18327 (#18328)
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/t18327.nim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/errmsgs/t18327.nim b/tests/errmsgs/t18327.nim new file mode 100644 index 000000000..686a1bd0c --- /dev/null +++ b/tests/errmsgs/t18327.nim @@ -0,0 +1,5 @@ +discard """ + errormsg: "parameter 'n' requires a type" +""" + +proc fn3(n) = discard \ No newline at end of file |