mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
11 lines
168 B
Nim
11 lines
168 B
Nim
discard """
|
|
file: "twrongtupleaccess.nim"
|
|
line: 9
|
|
errormsg: "attempting to call undeclared routine: \'setBLAH\'"
|
|
"""
|
|
# Bugfix
|
|
|
|
var v = (5.0, 10.0)
|
|
v.setBLAH(10)
|
|
|