vxx2 / vlib / v / checker / tests / no_interface_instantiation_b.vv
7 lines · 5 sloc · 69 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1interface Speaker {}
2
3fn my_fn(s Speaker) {}
4
5fn main() {
6 my_fn()
7}
8