diff options
author | metagn <metagngn@gmail.com> | 2022-08-23 22:41:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 21:41:30 +0200 |
commit | d1d141b135a605f81935e89322549013e5be3863 (patch) | |
tree | 27d0552df431ffa940ba8f66dc4be5507de2ad8d /tests/lookups | |
parent | 14656154efa2b3f08a341742c697fd1064f40166 (diff) | |
download | Nim-d1d141b135a605f81935e89322549013e5be3863.tar.gz |
new .redefine pragma for templates, warn on redefinition without it (#20211)
* test CI for template redefinitions * adapt asyncmacro * fix quote * fix again * try something else * revert * fix ioselectors_select, disable packages CI * adapt more tests & simplify * more * more * more * rename to redefine, warn on implicit redefinition * basic documentation [skip ci] * Update compiler/lineinfos.nim Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Diffstat (limited to 'tests/lookups')
-rw-r--r-- | tests/lookups/tredef.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lookups/tredef.nim b/tests/lookups/tredef.nim index 8f1b38bd1..7c1df238e 100644 --- a/tests/lookups/tredef.nim +++ b/tests/lookups/tredef.nim @@ -4,7 +4,7 @@ foo(1, "test") proc bar(a: int, b: string) = discard bar(1, "test") -template foo(a: int, b: string) = bar(a, b) +template foo(a: int, b: string) {.redefine.} = bar(a, b) foo(1, "test") block: |