summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T2394.hs
blob: 32cbe0edcc9116f1c8e57d7e9d756e094a59a1c2 (plain)
1
2
3
4
5
6
7
8
9
{-# OPTIONS_GHC -XDeriveDataTypeable -XStandaloneDeriving #-}

-- Test #2394

module Foo where

import Data.Data(Data)

deriving instance (Data a,Data b) => Data (a->b)