blob: 3547c100fb4c1d3e48834b077d63ef70543ea14f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -DTEST #-}
{-# OPTIONS_GHC -fffi #-} -- deprecation warning
#ifdef TEST
{-# LANGUAGE EmptyDataDecls #-}
#endif
#if __GLASGOW_HASKELL__ < 610
{-# INCLUDE "foo.h" #-} -- would generate a deprecation warning if enabled
#endif
module Test2464 where
data T
|