summaryrefslogtreecommitdiff
path: root/testsuite/tests/printer/Ppr041.hs
blob: 154a6097f71193123f0d93debaba63caa8060285 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE MagicHash #-}
module Main where

import GHC.Prim

data P = Positives Int# Float# Double# Char# Word# deriving Show
data N = Negatives Int# Float# Double# deriving Show

main = do
  print $ Positives 42# 4.23# 4.23## '4'# 4##
  print $ Negatives -4# -4.0# -4.0##