summary refs log blame commit diff stats
path: root/tests/init/tlet_uninit3.nim
blob: cb786f8c8a303fcbfcb0b311eb83d0dcf1088221 (plain) (tree)























                                                                       
discard """
  cmd: "nim check $file"
  action: "reject"
  nimout: '''
tlet_uninit3.nim(13, 5) Error: 'let' symbol requires an initialization
tlet_uninit3.nim(19, 5) Error: 'x' cannot be assigned to
tlet_uninit3.nim(23, 11) Error: 'let' symbol requires an initialization
'''
"""

{.experimental: "strictDefs".}

let global {.used.}: int

proc foo() =
  block:
    let x: int
    x = 13
    x = 14

  block:
    let x: int
    doAssert x == 0
foo()