aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/fn_call_no_body.out
blob: 376fc56c8a37be161087d643a02a7e9d72419663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
vlib/v/checker/tests/fn_call_no_body.vv:7:9: error: cannot call a method that does not have a body
    5 |
    6 | fn main() {
    7 |     Foo(0).f()
      |            ~~~
    8 |     f()
    9 | }
vlib/v/checker/tests/fn_call_no_body.vv:8:2: error: cannot call a function that does not have a body
    6 | fn main() {
    7 |     Foo(0).f()
    8 |     f()
      |     ~~~
    9 | }