summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/proposal-229d.hs
blob: 24a57ca87277b9d8966b494a83d8276204bc5cfb (plain)
1
2
3
4
5
6
{-# LANGUAGE BangPatterns #-}

module Proposal229d ((!)) where

(!) :: a -> b -> (a, b)
x ! y = (x,y)   -- parsed as an operator even with BangPatterns enabled