summary refs log tree commit diff stats
path: root/tests/lookups/t23172.nim
blob: 9edf9905a4301bc5ef6389d8cb598c4b202063f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
import issue_23172/m23172

type FooX = distinct Foo

func `$`*(x: FooX): string =
  $m23172.Foo(x)

var a: FooX
doAssert $a == "X"