blob: e2498c40891ad1979151b56b9ad0399c8796fc64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- Trac #5252
-- Killed 7.03 when compiled witout -O,
-- because it could not see that x had a product type
-- but MkS still unpacked it
module T5252 where
import T5252a
blah :: S -> T
blah (MkS x _) = x
|