mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* fixes #10838 * reject func in types instead * trigger tests
This commit is contained in:
@@ -1109,6 +1109,8 @@ proc parseProcExpr(p: var TParser; isExpr: bool; kind: TNodeKind): PNode =
|
||||
result = newNodeI(nkProcTy, info)
|
||||
if hasSignature:
|
||||
addSon(result, params)
|
||||
if kind == nkFuncDef:
|
||||
parMessage(p, "func keyword is not allowed in type descriptions, use proc with {.noSideEffect.} pragma instead")
|
||||
addSon(result, pragmas)
|
||||
|
||||
proc isExprStart(p: TParser): bool =
|
||||
|
||||
14
tests/proc/tfunc_type.nim
Normal file
14
tests/proc/tfunc_type.nim
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
discard """
|
||||
errmsg: "func keyword is not allowed in type descriptions, use proc with {.noSideEffect.} pragma instead"
|
||||
"""
|
||||
|
||||
type
|
||||
MyObject = object
|
||||
fn: func(a: int): int
|
||||
|
||||
proc myproc(a: int): int =
|
||||
echo "bla"
|
||||
result = a
|
||||
|
||||
var x = MyObject(fn: myproc)
|
||||
Reference in New Issue
Block a user