Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
orm_not_a_struct.out
7
lines
·
7
sloc
·
272 bytes
·
756075380b4f61146682f7e445b77cc67dc20577
Raw
1
vlib/v/checker/tests/orm_not_a_struct.vv:10:15: error: ORM: the table symbol `Person` has to be a struct
2
8 | db := sqlite.connect(':memory:')!
3
9 | _ := sql db {
4
10 | select from Person
5
| ~~~~~~
6
11 | }!
7
12 | }
8