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

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

infix 5 @&>
infixl 5 <@&

x = (@&> () <@& ())