v2 / vlib / v / checker / tests / no_interface_instantiation_c.vv
11 lines · 9 sloc · 92 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1interface Speaker {
2 speak()
3}
4
5fn my_fn(s Speaker) {}
6
7fn main() {
8 my_fn(
9 speak: 1
10 )
11}
12