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