sighashes: make more tests green

This commit is contained in:
Araq
2016-11-29 10:37:32 +01:00
parent 2e5663c6d2
commit 1c20046f28
2 changed files with 4 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ proc genVarTuple(p: BProc, n: PNode) =
return
genLineDir(p, n)
initLocExpr(p, n.sons[L-1], tup)
var t = tup.t.getUniqueType
var t = tup.t.skipTypes(abstractInst)
for i in countup(0, L-3):
var v = n.sons[i].sym
if sfCompileTime in v.flags: continue

View File

@@ -6,7 +6,7 @@ discard """
type
PA = ref TA
TA = array [0..2, PA]
TA = array[0..2, PA]
PRec = ref TRec
TRec {.final.} = object
@@ -14,13 +14,10 @@ type
P1 = ref T1
PB = ref TB
TB = array [0..3, P1]
T1 = array [0..6, PB]
TB = array[0..3, P1]
T1 = array[0..6, PB]
var
x: PA
new(x)
#ERROR_MSG internal error: cannot generate C type for: PA