Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
no_method_on_interface_propagation.out
7
lines
·
7
sloc
·
244 bytes
·
3b6045865b0f6ed489a77d953021ef5922428301
Raw
1
vlib/v/checker/tests/no_method_on_interface_propagation.vv:18:5: error: unknown method or field: `Cat.foo`
2
16 | a := new_animal('persian')
3
17 | if a is Cat {
4
18 | a.foo()
5
| ~~~~~
6
19 | }
7
20 | }
8