summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T9968a.hs
blob: ca5b1b082e76fa5bfc76aeffec8d5077fe57ed20 (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE DeriveAnyClass #-}

module T9968 where

import Data.Bifunctor

data Blah a b = A a | B b
  deriving (Bifunctor)