v2 / vlib / v / checker / tests / orm_anon_struct_field.out
7 lines · 7 sloc · 385 bytes · 21b6e359af51c4c7b7f52c90dc3b863b66715962
Raw
1vlib/v/checker/tests/orm_anon_struct_field.vv:5:2: error: ORM: field `name` uses an anonymous struct type, which ORM does not support; use a named struct, or skip it with `@[skip]` or `@[sql: '-']`
2 3 | struct Foo {
3 4 | id int @[primary; serial]
4 5 | name struct {
5 | ~~~~~~~~~~~~~
6 6 | id int @[primary; serial]
7 7 | first string
8