mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 13:07:48 +00:00
16 lines
283 B
Nim
16 lines
283 B
Nim
discard """
|
|
matrix: "--hint:SuccessX:off --hint:Link:off --hint:Conf:off --hint:CC:off --hint:XDeclaredButNotUsed:on"
|
|
nimout: '''
|
|
'''
|
|
nimoutFull: true
|
|
action: compile
|
|
"""
|
|
|
|
# bug #18203
|
|
import std/macros
|
|
|
|
macro foo(x: typed) = newProc ident"bar"
|
|
proc bar() {.foo.} = raise
|
|
bar()
|
|
|