blob: ee369cd189e0e423db4b4e835f56719edeb09040 (
plain)
1
2
3
4
5
6
7
8
9
|
module T15233 where
-- ghc-8.6 would accept (but silently ignore) both of the following:
infixl 7 :
{-# DEPRECATED (:) "Deprecting cons" #-}
-- this was never accepted by ghc-8.6, but now that GHC.Prim emits a fixity
-- declaration for `(->)`, we need to make sure it is disallowed elsewhere.
infixr 4 ->
|