blob: 70a4531688466bcf2a99e935c59e2ec692d6e3dc (
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
|