mirror of
https://github.com/status-im/nim-stew.git
synced 2025-01-09 19:56:09 +00:00
15 lines
242 B
Nim
15 lines
242 B
Nim
import ../stew/shims/strformat, unittest2
|
|
|
|
{.used.}
|
|
|
|
static:
|
|
assert not compiles(fmt"{dummy}")
|
|
|
|
suite "strformat":
|
|
test "no raises effects":
|
|
proc x() {.raises: [].} =
|
|
let str = "str"
|
|
doAssert fmt"{str}" == "str"
|
|
|
|
x()
|