v2 / vlib / v / tests / pointers / pointers_str_test.v
8 lines · 7 sloc · 107 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1struct Aaa {
2 foo int
3}
4
5fn test_pointer_to_string() {
6 a := Aaa{}
7 assert a.foo.str() != (&a.foo).str()
8}
9