mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-24 08:15:25 +00:00
make tests green again
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
type
|
||||
TBase = object of TObject
|
||||
TBase = object of RootObj
|
||||
x, y: int
|
||||
|
||||
TSubclassKind = enum ka, kb, kc, kd, ke, kf
|
||||
@@ -13,7 +13,7 @@ type
|
||||
n: bool
|
||||
|
||||
type
|
||||
TMyObject = object of TObject
|
||||
TMyObject = object of RootObj
|
||||
case disp: range[0..4]
|
||||
of 0: arg: char
|
||||
of 1: s: string
|
||||
|
||||
@@ -3,7 +3,7 @@ discard """
|
||||
"""
|
||||
|
||||
type
|
||||
TA = object of TObject
|
||||
TA = object of RootObj
|
||||
x, y: int
|
||||
|
||||
TB = object of TA
|
||||
|
||||
Reference in New Issue
Block a user