blob: 359961c8d9439f080a25455b38f36f61dc5ff4cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{-
A normal comment, to check if we can still pick up the CPP directive after it.
-}
-- Check that we can parse a file with leading comments
-- ^ haddock
-- * haddock
-- | haddock
-- $ haddock
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE CPP #-}
module T10942 where
main = return ()
|