mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-02 03:54:44 +00:00
* Fix compiler crash * make sure type is not lost
This commit is contained in:
@@ -716,7 +716,7 @@ proc transformExceptBranch(c: PTransf, n: PNode): PTransNode =
|
||||
result = transformSons(c, n)
|
||||
if n[0].isInfixAs():
|
||||
let excTypeNode = n[0][1]
|
||||
let actions = newTransNode(nkStmtList, n[1].info, 2)
|
||||
let actions = newTransNode(nkStmtListExpr, n[1], 2)
|
||||
# Generating `let exc = (excType)(getCurrentException())`
|
||||
# -> getCurrentException()
|
||||
let excCall = PTransNode(callCodegenProc("getCurrentException", ast.emptyNode))
|
||||
|
||||
@@ -21,5 +21,13 @@ proc test2() =
|
||||
testTemplate(Exception)
|
||||
doAssert(not declared(foobar))
|
||||
|
||||
|
||||
proc testTryAsExpr(i: int) =
|
||||
let x = try: i
|
||||
except ValueError as ex:
|
||||
echo(ex.msg)
|
||||
-1
|
||||
|
||||
test[Exception]()
|
||||
test2()
|
||||
test2()
|
||||
testTryAsExpr(5)
|
||||
|
||||
Reference in New Issue
Block a user