diff options
author | Andrii Riabushenko <cdome@bk.ru> | 2018-12-08 11:39:11 +0000 |
---|---|---|
committer | Andrii Riabushenko <cdome@bk.ru> | 2018-12-08 11:39:11 +0000 |
commit | 5f9234e5cbea12e01286d0789dc4ae6d4b537dbb (patch) | |
tree | 58f5471469ea1df750fa15faa376e2d5cf1ea1ed /tests/pragmas | |
parent | 94a63eef9a5da8441d17e1f5214c1823056bcf68 (diff) | |
download | Nim-5f9234e5cbea12e01286d0789dc4ae6d4b537dbb.tar.gz |
add comment, fixes #9896
Diffstat (limited to 'tests/pragmas')
-rw-r--r-- | tests/pragmas/tused.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/pragmas/tused.nim b/tests/pragmas/tused.nim index eb9cb08aa..dce854146 100644 --- a/tests/pragmas/tused.nim +++ b/tests/pragmas/tused.nim @@ -31,6 +31,7 @@ block: implementArithOpsNew(int) echoAdd 3, 5 +# issue #9896 type MyEnum {.used.} = enum Val1, Val2, Val3 |