mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
8 lines
218 B
Plaintext
8 lines
218 B
Plaintext
vlib/v/checker/tests/anon_struct_assign_err.vv:9:12: error: cannot assign anonymous `struct` to a typed `struct`
|
|
7 | }
|
|
8 | println(y)
|
|
9 | y = struct {
|
|
| ^
|
|
10 | name: 'Def'
|
|
11 | }
|