diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-07-05 15:51:04 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-07-05 15:51:04 +0200 |
commit | 0926754e68861947c67986bc9c7e0a011a58267b (patch) | |
tree | bc11469a33f1aabd202e7105177553688439712a /tests/assign | |
parent | 9b31f6785947974e89d46bbc0dee11f1c78754dc (diff) | |
download | Nim-0926754e68861947c67986bc9c7e0a011a58267b.tar.gz |
make tests green again
Diffstat (limited to 'tests/assign')
-rw-r--r-- | tests/assign/tobjasgn.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/assign/tobjasgn.nim b/tests/assign/tobjasgn.nim index e731d9e93..adfcfb087 100644 --- a/tests/assign/tobjasgn.nim +++ b/tests/assign/tobjasgn.nim @@ -8,7 +8,7 @@ assignment test a:test b:1 c:2 haha:3 # bug #1005 type - TSomeObj = object of TObject + TSomeObj = object of RootObj a, b: int PSomeObj = ref object a, b: int @@ -20,7 +20,7 @@ echo a.a, " ", b.a, " ", a.b, " ", b.b # bug #575 type - Something = object of Tobject + Something = object of RootObj a: string b, c: int32 |