aboutsummaryrefslogtreecommitdiff
path: root/testsuite/fail_compilation/enumeration_member_missing.elna
blob: 84a13d19dadb5c75f3c5f224d08e4942cbc29b25 (plain)
1
2
3
4
5
6
7
type
  Enumeration = (one, two, three)

proc f(): Enumeration
return Enumeration.four (* @Error Enumeration 'Enumeration' does not have a member named 'four' *)

end.