summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/operator07.reject.lc
blob: 8b25214b1f85be19f3bbf506187798e4820a7730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE NoImplicitPrelude #-}

import Internals

infix 5 @&>
infixl 5 <@&

_ @&> _ = ()
_ <@& _ = ()

main = () @&> () <@& ()