summary refs log blame commit diff stats
path: root/tests/stdlib/mimportutils.nim
blob: d2b185cd391f7b7902e517e442bb053124700ab6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                      
type
  A* = object
    a0*: int
    ha1: float
  B = object
    b0*: int
    hb1: float
  C* = ref object
    c0: int
    hc1: float
  D* = ptr object
    d0: int
    hd1: float
  PA* = ref A
  PtA* = ptr A

proc initB*(): B = B()