v4 / vlib / v / tests / interfaces / interface_only_decl_with_option_test.v
8 lines · 7 sloc · 128 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1interface Message {
2 serialize() ?[]u8
3}
4
5fn test_interface_only_decl_with_option() {
6 println('test interface')
7 assert true
8}
9