summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail079.hs
blob: ec42260d699240c029d054bf22a62018545d0083 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE MagicHash #-}

module ShouldFail where

-- !!! unboxed field in newtype declaration

import GHC.Exts ( Int# )

newtype Unboxed = Unboxed Int#

f = [ Unboxed 1#, Unboxed 2# ] -- shouldn't be allowed!