summary refs log tree commit diff stats
path: root/tests/errmsgs/undeclared_routime4.nim
blob: 674caa421d1256d40ac3c78507affc2243c7385b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
cmd: '''nim c --hints:off $file'''
errormsg: "undeclared field: 'bar'"
nimout: '''undeclared_routime4.nim(10, 10) Error: undeclared field: 'bar'
'''
"""

type Foo = object
var a = Foo()
let a = a.bar