summary refs log tree commit diff stats
path: root/tests/reject/mambsym1.nim
blob: cf8ac5242141e86d038c7cddddbc1848ec8a6053 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import mambsym2 # import TExport

type
  TExport* = enum x, y, z
  TOtherEnum* = enum mDec, mInc, mAssign

proc ha() =
  var
    x: TExport # no error
  nil