aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/checker/tests/defer_optional.out
blob: 184e35e641693956a94cb8a4a410ab8654a4d383 (plain)
1
2
3
4
5
6
7
vlib/v/checker/tests/defer_optional.vv:5:3: error: opt() returns an option, so it should have an `or {}` block at the end
    3 | fn thing() ?string {
    4 |     defer {
    5 |         opt()
      |         ~~~~~
    6 |     }
    7 |     return 'ok'