summary refs log tree commit diff stats
path: root/tests/macros/tisexported.nim
blob: 53766edf5a3b5ff9119fdab27098d5635f8adcdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import macros

proc t1* = discard
proc t2 = discard

macro check(p1: typed, p2: typed) =
  doAssert isExported(p1) == true
  doAssert isExported(p2) == false

check t1, t2