summary refs log tree commit diff stats
path: root/tests/pragmas/tsym_as_pragma.nim
blob: 7883112441dd152b925df5581cbee1babdb794aa (plain) (blame)
1
2
3
4
5
6
7
8
# bug #3171

template newDataWindow(): untyped =
    let eventClosure = proc (closure: pointer): bool {.closure, cdecl.} =
        discard

newDataWindow()