1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/test/fixtures/go/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() {
h = 1
f, g += 2, 3
e *= 3
d += 1
c <<= 1
b >>= 2
a /= 2
z ^= 2
y %= 2
x &^= 2
2017-10-25 00:19:49 +03:00
var pointer *Point2D = &Point2D{x: 1000}
2017-02-23 21:06:49 +03:00
}