summary refs log tree commit diff stats
path: root/tests/errmsgs/undeclared_routime3.nim
blob: 052adfc081dc5dffbe30114dbe6d3d4567fdcf9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
cmd: '''nim c --hints:off $file'''
errormsg: "undeclared field: 'bar'"
nimout: '''undeclared_routime3.nim(13, 10) Error: undeclared field: 'bar'
  found 'undeclared_routime3.bar()[declared in undeclared_routime3.nim(12, 9)]' of kind 'iterator'
'''
"""


type Foo = object
var a = Foo()
iterator bar():int=discard
let a = a.bar