summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/ColumnPragma.hs
blob: 8044d1b4d81beb19c9e8dd9738485560919225e2 (plain)
1
2
3
4
5
6
main :: IO ()
main = do
  -- force an "unrecognized pragma" warning
  -- to check if the column number is correct
  {-# COLUMN 1000 #-}print "Hello"  {-# NONEXISTENTPRAGMA #-}
  print "world"