1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/test/fixtures/go/binary-expressions.B.go
2017-11-20 10:57:19 -08:00

27 lines
249 B
Go

package main
func main() {
// comment 1
b || // comment 2
c
// comment 3
d && c
f == e
h != g
j < i
l <= k
n > m
p >= o
r + q
t - s
v | u
y ^ x
aa * z
cc / bb
ee % dd
gg << ff
ii >> hh
kk & jj
mm &^ ll
}