mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 18:32:11 +00:00
15 lines
325 B
Nim
15 lines
325 B
Nim
discard """
|
|
action: run
|
|
"""
|
|
block:
|
|
proc something(a: string or int or float) =
|
|
const (c, d) = (default a.type, default a.type)
|
|
|
|
block:
|
|
proc something(a: string or int) =
|
|
const c = default a.type
|
|
|
|
block:
|
|
proc something(a: string or int) =
|
|
const (c, d, e) = (default a.type, default a.type, default a.type)
|