mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
FAIL: tillegal_recursion.nim Test "tests/objects/tillegal_recursion.nim" in category "objects" Failure: reMsgsDiffer Expected: illegal recursion in type 'object' Gotten: inheritance only works with non-final objects
8 lines
129 B
Nim
8 lines
129 B
Nim
discard """
|
|
errormsg: "inheritance only works with non-final objects"
|
|
line: 7
|
|
"""
|
|
# bug #1691
|
|
type
|
|
Foo = ref object of Foo
|