mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-20 14:25:23 +00:00
fixes #2377
This commit is contained in:
@@ -426,7 +426,12 @@ proc semGenericStmt(c: PContext, n: PNode,
|
||||
n.sons[paramsPos] = semGenericStmt(c, n.sons[paramsPos], flags, ctx)
|
||||
n.sons[pragmasPos] = semGenericStmt(c, n.sons[pragmasPos], flags, ctx)
|
||||
var body: PNode
|
||||
if n.sons[namePos].kind == nkSym: body = n.sons[namePos].sym.getBody
|
||||
if n.sons[namePos].kind == nkSym:
|
||||
let s = n.sons[namePos].sym
|
||||
if sfGenSym in s.flags and s.ast == nil:
|
||||
body = n.sons[bodyPos]
|
||||
else:
|
||||
body = s.getBody
|
||||
else: body = n.sons[bodyPos]
|
||||
n.sons[bodyPos] = semGenericStmtScope(c, body, flags, ctx)
|
||||
closeScope(c)
|
||||
|
||||
9
tests/async/tgeneric_async.nim
Normal file
9
tests/async/tgeneric_async.nim
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
import asyncdispatch
|
||||
|
||||
when true:
|
||||
# bug #2377
|
||||
proc test[T](v: T) {.async.} =
|
||||
echo $v
|
||||
|
||||
asyncCheck test[int](1)
|
||||
Reference in New Issue
Block a user