mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
11 lines
105 B
Nim
11 lines
105 B
Nim
# issue #23565
|
|
|
|
func foo: bool =
|
|
true
|
|
|
|
const bar = block:
|
|
type T = int
|
|
not foo()
|
|
|
|
doAssert not bar
|