mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
15 lines
278 B
Nim
15 lines
278 B
Nim
func r(): auto =
|
|
func(): int = 2
|
|
doAssert r()() == 2
|
|
|
|
block: # issue #11726
|
|
let foo = block:
|
|
var x: int
|
|
proc = inc x # "identifier expected, but got '='"
|
|
|
|
template paint(): untyped =
|
|
proc (s: string): string = s
|
|
|
|
let s = paint()
|
|
doAssert s("abc") == "abc"
|