mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
12 lines
245 B
Nim
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"
|