Pavel Matrosov

Results 2 issues of Pavel Matrosov

Following code: ```nim import limdb type Foo = object a: string let db = initDatabase("db", (int, Foo)) db[1] = Foo(a: "a") echo db[1] ``` runs without error. But in next...

bug