diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2020-11-06 18:40:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 11:40:14 +0100 |
commit | 218ff27b70c05340069d262204f785290467aa00 (patch) | |
tree | 34da1fd655b5b23245ec2cc9a1f2ac33a002a02b /tests/effects | |
parent | cdd459dd60e7cf69868ac23e754e8047df6afddc (diff) | |
download | Nim-218ff27b70c05340069d262204f785290467aa00.tar.gz |
fix #15851 (#15852)
* fix #15851 * {.cast(noSideEffect).}
Diffstat (limited to 'tests/effects')
-rw-r--r-- | tests/effects/tstrict_funcs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/effects/tstrict_funcs.nim b/tests/effects/tstrict_funcs.nim index 75ed9c8d9..0028e7d7e 100644 --- a/tests/effects/tstrict_funcs.nim +++ b/tests/effects/tstrict_funcs.nim @@ -2,7 +2,7 @@ discard """ cmd: "nim c --experimental:strictFuncs --experimental:views $file" """ -import tables, streams, nre, parsecsv, uri +import tables, streams, nre, parsecsv, uri, httpcore type Contig2Reads = TableRef[string, seq[string]] |