diff options
author | Araq <rumpf_a@web.de> | 2014-12-01 22:53:50 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-01 22:53:50 +0100 |
commit | 85d83fd8cb43a1d49a18a6f6329662da47059646 (patch) | |
tree | 8edd37be21d0c729f137d1e56a36de2198e30ad2 /tests | |
parent | 866ce10b056edc19e77c8a1b35ca5cb0645be4dd (diff) | |
download | Nim-85d83fd8cb43a1d49a18a6f6329662da47059646.tar.gz |
fixes regression due to object assignment fixes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/typerel/tnoargopenarray.nim | 2 | ||||
-rw-r--r-- | tests/typerel/typalias.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/typerel/tnoargopenarray.nim b/tests/typerel/tnoargopenarray.nim index 20ebe5ecc..3e65194ff 100644 --- a/tests/typerel/tnoargopenarray.nim +++ b/tests/typerel/tnoargopenarray.nim @@ -1,7 +1,7 @@ import db_sqlite -var db: DbConn +var db: TDbConn exec(db, sql"create table blabla()") diff --git a/tests/typerel/typalias.nim b/tests/typerel/typalias.nim index 40ff06765..55dcb9fa6 100644 --- a/tests/typerel/typalias.nim +++ b/tests/typerel/typalias.nim @@ -1,7 +1,7 @@ type TMyObj = TYourObj - TYourObj = object of TObject + TYourObj = object of RootObj x, y: int proc init: TYourObj = |