1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00
semantic/test/fixtures/go/binary-expressions.A.go

27 lines
249 B
Go
Raw Normal View History

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