summary refs log tree commit diff stats
path: root/tests/tuples/twrongtupleaccess.nim
blob: 591716a2e3e8027e9ca1e8b41a3b9b23014eed2f (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  errormsg: "attempting to call undeclared routine: \'setBLAH\'"
  file: "twrongtupleaccess.nim"
  line: 9
"""
# Bugfix

var v = (5.0, 10.0)
v.setBLAH(10)