vxx2 / vlib / v / checker / tests / orm_anon_struct_field.vv
17 lines · 15 sloc · 224 bytes · 21b6e359af51c4c7b7f52c90dc3b863b66715962
Raw
1import db.sqlite
2
3struct Foo {
4 id int @[primary; serial]
5 name struct {
6 id int @[primary; serial]
7 first string
8 last string
9 }
10}
11
12fn main() {
13 db := sqlite.connect(':memory:')!
14 sql db {
15 create table Foo
16 }!
17}
18