mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-16 08:04:20 +00:00
* stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
11 lines
153 B
Nim
11 lines
153 B
Nim
discard """
|
|
targets: "c cpp"
|
|
disabled: windows
|
|
"""
|
|
# bug #21116
|
|
import std/os
|
|
|
|
proc p(glob: string) =
|
|
for _ in walkFiles(glob): discard
|
|
p("dir/*")
|