blob: 638327c3619e8b7af89a9a73084f1e65af85e99e (
plain)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE MagicHash, UnboxedTuples #-}
module T23068 where
import GHC.Exts
f :: () -> (# Int, Int #)
f () = (# 0, 0 #)
g :: () -> (# Int#, Int#, Int #)
g () = (# 0#, 0#, 0 #)
|