| 1 | vlib/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 |