1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/defer_propagate.out
2022-05-13 06:56:21 +03:00

8 lines
240 B
Plaintext

vlib/v/parser/tests/defer_propagate.vv:9:14: error: error propagation not allowed inside `defer` blocks
7 | mut a := 0
8 | defer {
9 | a = test1()?
| ^
10 | }
11 | return a