summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/tc212.hs
blob: ad408fbdaf411f3393f32db4ce143e91129091f1 (plain)
1
2
3
4
5
6
7
8

-- This one crashed the 6.6 release candidate

module ShouldCompile where

-- A specialise pragma with no type signature
fac n = fac (n + 1)
{-# SPECIALISE fac :: Int -> Int #-}