mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
15 lines
253 B
Nim
15 lines
253 B
Nim
discard """
|
|
errormsg: "Nested expressions cannot be moved: 'if true: s else: String()'"
|
|
"""
|
|
|
|
type
|
|
String = object
|
|
id: string
|
|
|
|
proc hello =
|
|
var s = String(id: "1")
|
|
var m = ensureMove(if true: s else: String())
|
|
discard m
|
|
discard s
|
|
|
|
hello() |