summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/fixity01.lc
blob: 21a6db057f8b5b733dbb90978e9cda763a971cb1 (plain)
1
2
3
4
5
6
7
8
9
10
funL a b = a
funR a b = a

a <<<< b = a
a >>>> b = b

infixr 7 `funL`, <<<<
infixr 6 >>>>
infixr 6 `funR`