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

interface: fix function is private bug

This commit is contained in:
Alexander Medvednikov
2019-07-04 23:28:39 +02:00
parent 60c4d99407
commit 74dbb1bce3
2 changed files with 2 additions and 1 deletions

View File

@@ -503,7 +503,7 @@ fn (p mut Parser) async_fn_call(f Fn, method_ph int, receiver_var, receiver_type
}
fn (p mut Parser) fn_call(f Fn, method_ph int, receiver_var, receiver_type string) {
if !f.is_public && !f.is_c && !p.pref.is_test && f.pkg != p.pkg {
if !f.is_public && !f.is_c && !p.pref.is_test && !f.is_interface && f.pkg != p.pkg {
p.error('function `$f.name` is private')
}
p.calling_c = f.is_c