mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-14 23:33:28 +00:00
* fixes #15280 [backport:1.2] * make tests green again * adapt tests
This commit is contained in:
@@ -184,7 +184,7 @@ proc endsInNoReturn(n: PNode): bool =
|
||||
var it = n
|
||||
while it.kind in {nkStmtList, nkStmtListExpr} and it.len > 0:
|
||||
it = it.lastSon
|
||||
result = it.kind in nkLastBlockStmts or
|
||||
result = it.kind in (nkLastBlockStmts-{nkReturnStmt}) or
|
||||
it.kind in nkCallKinds and it[0].kind == nkSym and sfNoReturn in it[0].sym.flags
|
||||
|
||||
proc commonType*(x: PType, y: PNode): PType =
|
||||
|
||||
Reference in New Issue
Block a user