summary refs log tree commit diff stats
path: root/tests/ccgbugs/t21116.nim
blob: cc77de1982b2bc22d6d98b8b8a3a37850f94aa8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  targets: "c cpp"
  disabled: windows
"""
# bug #21116
import std/os

proc p(glob: string) =
  for _ in walkFiles(glob): discard
p("dir/*")