diff options
author | flywind <xzsflywind@gmail.com> | 2021-09-15 01:39:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 19:39:55 +0200 |
commit | bf1700bab17da3c8776914ac5bdfff016eb70442 (patch) | |
tree | 9dc839845897d92f248523bb33cf3fcce5a6b03d /tests/arc | |
parent | 172253cb551a475d7d32093e562521990e71a1ed (diff) | |
download | Nim-bf1700bab17da3c8776914ac5bdfff016eb70442.tar.gz |
add testcase for #7308 (#18849)
Diffstat (limited to 'tests/arc')
-rw-r--r-- | tests/arc/tarcmisc.nim | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/arc/tarcmisc.nim b/tests/arc/tarcmisc.nim index 951ae25f3..7daea62c8 100644 --- a/tests/arc/tarcmisc.nim +++ b/tests/arc/tarcmisc.nim @@ -463,14 +463,3 @@ proc putValue[T](n: T) = echo b.n useForward() - - -# bug #16246 - -proc testWeirdTypeAliases() = - var values = newSeq[cuint](8) - # var values: seq[cuint] does not produce codegen error - var drawCb = proc(): seq[uint32] = - result = newSeq[uint32](10) - -testWeirdTypeAliases() |