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

parser: fix x.function_pointer()

This commit is contained in:
BigBlack
2019-12-20 02:23:29 +08:00
committed by Alexander Medvednikov
parent 2096018b00
commit a38a0f4fb7
2 changed files with 4 additions and 1 deletions

View File

@@ -157,6 +157,9 @@ fn test_fn_type_call() {
st := MySt{f:test}
assert st.f(10) == 1010
st1 := &MySt{f:test}
assert st1.f(10) == 1010
}