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

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