diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-07-03 20:08:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 14:08:40 +0200 |
commit | d9a24b9b81e6a4e5f723951ec89990e35a9f7d44 (patch) | |
tree | 7eda814d06ede84831788429adcdba40f257560d /tests/import/fizz | |
parent | 1ad618d96cab3f518b77c22432600e6b6bf56fae (diff) | |
download | Nim-d9a24b9b81e6a4e5f723951ec89990e35a9f7d44.tar.gz |
fixes #22208; Ambiguous error when import modules with same names but… (#22211)
fixes #22208; Ambiguous error when import modules with same names but different aliases
Diffstat (limited to 'tests/import/fizz')
-rw-r--r-- | tests/import/fizz/m21496.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/import/fizz/m21496.nim b/tests/import/fizz/m21496.nim index 834c11eae..525b653d6 100644 --- a/tests/import/fizz/m21496.nim +++ b/tests/import/fizz/m21496.nim @@ -1 +1 @@ -proc fb* = echo "fizz!" \ No newline at end of file +proc fb*: string = "fizz!" \ No newline at end of file |