blob: 2373eb649497dc764361ac6e4d67f596368218a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{-# Language CPP #-}
module Ppr010 where
#if __GLASGOW_HASKELL__ > 704
foo :: Int
#else
foo :: Integer
#endif
foo = 3
bar :: (
#if __GLASGOW_HASKELL__ > 704
Int)
#else
Integer)
#endif
bar = 4
|