Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
interpolation_recursive_str_err.vv
15
lines
·
12
sloc
·
133 bytes
·
0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1
module main
2
3
struct Test {
4
a int
5
}
6
7
fn (t Test) str() string {
8
_ = '${t}'
9
return 'test'
10
}
11
12
fn main() {
13
a := Test{}
14
println(a)
15
}
16