v2 / vlib / v / checker / tests / modules / implement_private_interface.out
7 lines · 7 sloc · 305 bytes · 4c22007562897229865c7e00d564cace0b34b348
Raw
1vlib/v/checker/tests/modules/implement_private_interface/main.v:7:16: error: `Bar` cannot implement private interface `implement_private_interface.baz.Foo` of other module
2 5 | fn main() {
3 6 | b := Bar{10}
4 7 | baz.print_foo(b) // prints 10
5 | ^
6 8 | }
7 9 |
8