summary refs log tree commit diff stats
path: root/tests/stdlib/tstrformat.nim
blob: 0c56a27f964ae0ec56a30067705f14f66fdc3f91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
    action: "run"
"""

import strformat

type Obj = object

proc `$`(o: Obj): string = "foobar"

var o: Obj
doAssert %"{o}" == "foobar"
doAssert %"{o:10}" == "foobar    "