parser: fix x.function_pointer()

pull/3157/head
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

@ -2009,7 +2009,7 @@ pub:
if base.starts_with('fn ') && p.peek() == .lpar {
tmp_typ := p.table.find_type(base)
mut f := tmp_typ.func
p.gen('.$field.name')
p.gen('$dot$field.name')
p.gen('(')
p.check(.name)
p.fn_call_args(mut f)

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
}