v2 / vlib / v / tests / printing / print_charptr_test.v
9 lines · 8 sloc · 98 bytes · aee3c13f910a72d5d53dca452f1d3581eee0d8fe
Raw
1struct Foo {
2 intv int
3 cptr charptr
4}
5
6fn test_main() {
7 println(Foo{ intv: 42 })
8 assert true
9}
10