summary refs log tree commit diff stats
path: root/tests/system/tsigexitcode.nim
Commit message (Expand)AuthorAgeFilesLines
* fix #17749 ignore SIGPIPE signals, fix nim CI #17748 (#17752)Timothee Cour2021-04-181-4/+7
* system/excpt: let the OS handle termination on signal (#16712)alaviss2021-02-191-0/+20
id='n11' href='#n11'>11 12 13 14













                                                                      
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)