mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
21 lines
329 B
Nim
21 lines
329 B
Nim
discard """
|
|
errormsg: "cannot use symbol of kind 'var' as a 'param'"
|
|
line: 20
|
|
"""
|
|
|
|
# bug #3158
|
|
|
|
type
|
|
MyData = object
|
|
x: int
|
|
|
|
template newDataWindow(data: ref MyData): untyped =
|
|
proc testProc(data: ref MyData) =
|
|
echo "Hello, ", data.x
|
|
testProc(data)
|
|
|
|
var d: ref MyData
|
|
new(d)
|
|
d.x = 10
|
|
newDataWindow(d)
|