Added struct lifetime test

This commit is contained in:
Eduard Urbach 2025-03-10 15:58:31 +01:00
parent 377b66663f
commit f7a4f0cacc
Signed by: eduard
GPG key ID: 49226B848C78F6C8
3 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,8 @@
main() {
c := new(Counter)
c.value += 16
}
struct Counter {
value int
}

View file

@ -69,6 +69,7 @@ var programs = []struct {
{"index-static", 0},
{"index-dynamic", 0},
{"struct", 0},
{"struct-lifetime", 0},
{"len", 0},
{"cast", 0},
{"function-pointer", 0},