diff options
author | Araq <rumpf_a@web.de> | 2015-10-14 00:41:27 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-10-14 00:41:27 +0200 |
commit | a40ace648db2659aab35696e145dd3aa604be285 (patch) | |
tree | 8c3efe03d4192e9e6806690f73b1855e72bbb2fb /tests | |
parent | f4bfa076ae01ed2adec8e7fb6f513144791931bf (diff) | |
download | Nim-a40ace648db2659aab35696e145dd3aa604be285.tar.gz |
fixes regression: tobjconstr2 test works again
Diffstat (limited to 'tests')
-rw-r--r-- | tests/objects/tobjconstr2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/objects/tobjconstr2.nim b/tests/objects/tobjconstr2.nim index 39683ddc5..f6805190b 100644 --- a/tests/objects/tobjconstr2.nim +++ b/tests/objects/tobjconstr2.nim @@ -24,7 +24,7 @@ var b = Bar(x: 100, y: 200) # used to fail # bug 1275 type - Graphic = object of TObject + Graphic = object of RootObj case kind: range[0..1] of 0: radius: float |