Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
cmd
/
tools
/
vvet
/
tests
/
repeated_assign.vv
15
lines
·
15
sloc
·
179 bytes
·
f75aa345809281fc4dcf038adbf5d4d2afe77bb7
Raw
1
// vtest vflags: -r
2
fn main() {
3
mut a := ''
4
a += 'foo'
5
a += 'foo'
6
a += 'foo'
7
a += 'foo'
8
a += 'foo'
9
a += 'foo'
10
a += 'foo'
11
a += 'foo'
12
a += 'foo'
13
a += 'foo'
14
a += 'foo'
15
}
16