Files
Nim/tests/stdlib/tos_unc.nim
ringabout 4fa86422c0 stdlib tests now check refc too (#21664)
* stdlib tests now check refc too

* typo

* fixes line numbers

* disable cpp

* do not touch
2023-04-21 15:37:58 +02:00

12 lines
245 B
Nim

discard """
matrix: "--mm:refc; --mm:orc"
disabled: "posix"
"""
# bug 10952, UNC paths
import os
import std/assertions
doAssert r"\\hostname\foo\bar" / "baz" == r"\\hostname\foo\bar\baz"
doAssert r"\\?\C:\foo" / "bar" == r"\\?\C:\foo\bar"