1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00
semantic/test/fixtures/go/corpus/binary-expressions.B.go
2018-04-18 13:33:17 -07: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
}