summary refs log tree commit diff stats
path: root/tests/cpp
ModeNameSize
-rw-r--r--amodule.nim268log stats plain blame
-rw-r--r--enum.hpp48log stats plain blame
-rw-r--r--foo.c44log stats plain blame
-rw-r--r--mexportc.nim244log stats plain blame
-rw-r--r--t10148.nim626log stats plain blame
-rw-r--r--t10241.nim381log stats plain blame
-rw-r--r--t6986.nim332log stats plain blame
-rw-r--r--t8241.nim619log stats plain blame
-rw-r--r--t9013.nim218log stats plain blame
-rw-r--r--tasync_cpp.nim209log stats plain blame
-rw-r--r--tcasts.nim405log stats plain blame
-rw-r--r--tcovariancerules.nim9844log stats plain blame
-rw-r--r--tcppraise.nim983log stats plain blame
-rw-r--r--tdont_init_instantiation.nim448log stats plain blame
-rw-r--r--tembarrassing_generic_bug.nim112log stats plain blame
-rw-r--r--temitlist.nim862log stats plain blame
-rw-r--r--tempty_generic_obj.nim1141log stats plain blame
-rw-r--r--tenum_set.nim179log stats plain blame
-rw-r--r--tevalorder.nim230log stats plain blame
-rw-r--r--texportc.nim356log stats plain blame
-rw-r--r--tgen_prototype_for_importc.nim145log stats plain blame
-rw-r--r--tget_subsystem.nim593log stats plain blame
-rw-r--r--tnativesockets.nim69log stats plain blame
-rw-r--r--treturn_array.nim243log stats plain blame
-rw-r--r--tretvar.nim1126log stats plain blame
-rw-r--r--tsigbreak.nim576log stats plain blame
-rw-r--r--tstaticvar_via_typedesc.nim307log stats plain blame
-rw-r--r--ttemplatetype.nim314log stats plain blame
-rw-r--r--tterminate_handler.nim179log stats plain blame
-rw-r--r--tthread_createthread.nim255log stats plain blame
-rw-r--r--ttypeinfo.nim279log stats plain blame
-rw-r--r--ttypeinfo2.nim73log stats plain blame
-rw-r--r--tvector_iterator.nim279log stats plain blame
-rw-r--r--tvectorseq.nim807log stats plain blame
="p">: 1) e.h3 == 1 block: assertAll: var a = G[int]() var b = a.addr privateAccess b.type discard b.he1 discard b[][].he1 block: assertAll: privateAccess H[int] var a = H[int](h5: 2) block: assertAll: privateAccess PA var pa = PA(a0: 1, ha1: 2) pa.ha1 == 2 pa.ha1 = 3 pa.ha1 == 3 block: assertAll: var b = BAalias() not compiles(b.hb1) privateAccess BAalias discard b.hb1 block: assertAll: var a = A(a0: 1) var a2 = a.addr not compiles(a2.ha1) privateAccess PtA a2.type is PtA a2.ha1 = 2 a2.ha1 == 2 a.ha1 = 3 a2.ha1 == 3 block: disableVm: assertAll: var a = A.create() defer: dealloc(a) a is PtA a.typeof is PtA not compiles(a.ha1) privateAccess a.typeof a.ha1 = 2 a.ha1 == 2 a[].ha1 = 3 a.ha1 == 3 block: disableVm: assertAll: var a = A.create() defer: dealloc(a) privateAccess PtA a.ha1 == 0 block: privateAccess PityRef let x = PityRef[int](a: 1) # works doAssert x.a == 1 privateAccess Hope let y = Hope[int](a: 1) doAssert y.a == 1 static: main() main()