diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-03-02 16:16:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 09:16:28 +0100 |
commit | 38d299dfc0c9f1315cf412aa76cb041642d62f07 (patch) | |
tree | 69c6929743c4311facb3b4f428e6aa91e6563955 /tests/ccgbugs/m1 | |
parent | 50baf21eacfaf1c9d6949bf2b2e9f931b0e1509c (diff) | |
download | Nim-38d299dfc0c9f1315cf412aa76cb041642d62f07.tar.gz |
fixes #20139; hash types based on its path relative to its package path (#21274) [backport:1.6]
* fixes #20139; hash types based on its path relative its project * add a test case * fixes procs * better implementation and test case --------- Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Diffstat (limited to 'tests/ccgbugs/m1')
-rw-r--r-- | tests/ccgbugs/m1/defs.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ccgbugs/m1/defs.nim b/tests/ccgbugs/m1/defs.nim new file mode 100644 index 000000000..ed78d8b72 --- /dev/null +++ b/tests/ccgbugs/m1/defs.nim @@ -0,0 +1,4 @@ +type MyObj* = object + field1*: int + s*: string + ch*: char |