blob: c82040b683af5c7119598af6bf45ad4aa1bd8617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
module Main where
import Data.Char
{-# NOINLINE f #-}
f :: Int -> String
f x = "NOT FIRED"
{-# NOINLINE neg #-}
neg :: Int -> Int
neg = negate
{-# NOINLINE myord #-}
myord :: Char -> Int
myord = ord
{-# RULES
"f" forall (c::Char->Int) (x::Char). f (c x) = "RULE FIRED"
#-}
main = do { print (f (myord 'a')) -- Rule should fire
; print (f (neg 1)) } -- Rule should not fire
|