v/vlib/v/checker/tests/unknown_method.vv

9 lines
74 B
V

module main
struct Test {}
fn main() {
t := Test{}
println(t.sdd())
}