blob: 04db65b7ed9bb662c142efdab919b806e735f281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
T5883.hs:(7,2)-(12,5): Splicing declarations
[d| data Unit = Unit
instance Show Unit where
show _ = ""
{-# INLINE show #-} |]
======>
data Unit = Unit
instance Show Unit where
{-# INLINE show #-}
show _ = ""
|