blob: 4cc8882a47310604b4e9e77d0e0c798992929b47 (
plain)
1
2
3
4
5
6
7
8
9
|
{-# OPTIONS_GHC -ddump-to-file #-}
{-# OPTIONS_GHC -fhpc -ddump-ticked -ddump-simpl-trace -ddump-tc #-}
{-# OPTIONS_GHC -ddump-types -ddump-core-stats #-}
module T15953 where
foo :: Int -> Int
foo 0 = 0
foo n = foo (n - 1)
|