vxx2 / vlib / v / checker / tests / interpolation_recursive_str_err.vv
15 lines · 12 sloc · 133 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1module main
2
3struct Test {
4 a int
5}
6
7fn (t Test) str() string {
8 _ = '${t}'
9 return 'test'
10}
11
12fn main() {
13 a := Test{}
14 println(a)
15}
16