1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00
semantic/test/fixtures/go/corpus/assignment-statements.B.go

17 lines
150 B
Go
Raw Normal View History

2017-02-23 21:06:49 +03:00
package main
func main() {
2017-12-19 21:58:36 +03:00
l = 1
m, n += 2, 3
o *= 3
p += 1
q <<= 1
s >>= 2
t /= 2
u ^= 2
v %= 2
w &^= 2
2017-10-25 00:19:49 +03:00
var pointer *Point2D = &Point2D{x: 1000}
2017-02-23 21:06:49 +03:00
}