blob: 48c66101bc921f9388ce63d7f01e9f8393e0693e (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- an options pragma that needs more than 1k of buffer to read
{-# OPTIONS_GHC
-w #-}
module Pragma002 () where
-- This will make a warning if the pragam isn't picked up
foo _ = ()
foo _ = ()
|