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

8 lines
214 B
Plaintext

vlib/v/parser/tests/nested_defer.vv:5:3: error: `defer` blocks cannot be nested
3 | defer {
4 | a = 12
5 | defer {
| ~~~~~
6 | a = 13
7 | }