summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/T13594.hs
blob: 627e38f8fa3b173a25ff414dea9afc33f3c85547 (plain)
1
2
3
4
5
6
7
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE RankNTypes #-}
module Bug where

x :: forall a . a ~ Integer => forall b. b ~ Integer => (a, b)
!x = (1, 2)