Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
pointers
/
pointers_str_test.v
8
lines
·
7
sloc
·
107 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
struct
Aaa {
2
foo int
3
}
4
5
fn
test_pointer_to_string() {
6
a := Aaa{}
7
assert a.foo.str() != (&a.foo).str()
8
}
9