blob: bf315388df229305c1521d985e7899b380ff202d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# OPTIONS_GHC -Wno-inline-rule-shadowing #-}
module Bug where
-- regression test for #504:
-- the pragma start and end sequences can both start in column 1
-- without parse error
{-# RULES
"foo" foo 1 = 1
#-}
foo 1 = 1
|