v2 / vlib / v / tests / fns / method_first_last_call_test.v
12 lines · 9 sloc · 145 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1struct Foo {}
2
3fn (l &Foo) first() {}
4
5fn (l &Foo) last() {}
6
7fn test_method_first_last_call() {
8 f := Foo{}
9 f.first()
10 f.last()
11 assert true
12}
13