summary refs log tree commit diff stats
path: root/tests/stdlib/tos_unc.nim
blob: fc74a4b9d312ceb4cd1b9b87559a036bc5574c6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  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"