mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
10 lines
131 B
Nim
10 lines
131 B
Nim
import issue_23172/m23172
|
|
|
|
type FooX = distinct Foo
|
|
|
|
func `$`*(x: FooX): string =
|
|
$m23172.Foo(x)
|
|
|
|
var a: FooX
|
|
doAssert $a == "X"
|