mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-25 08:43:58 +00:00
21
tests/template/t9534.nim
Normal file
21
tests/template/t9534.nim
Normal file
@@ -0,0 +1,21 @@
|
||||
discard """
|
||||
targets: "c cpp"
|
||||
"""
|
||||
|
||||
# bug #9534
|
||||
type
|
||||
Object = object
|
||||
data: int
|
||||
|
||||
template test() =
|
||||
proc methodName(o: Object): int =
|
||||
var p: pointer
|
||||
doAssert o.data == 521
|
||||
let f {.used.} = cast[proc (o: int): int {.nimcall.}](p)
|
||||
doAssert o.data == 521
|
||||
result = 1314
|
||||
|
||||
var a = Object(data: 521)
|
||||
doAssert methodName(a) == 1314
|
||||
|
||||
test()
|
||||
Reference in New Issue
Block a user