summaryrefslogtreecommitdiff
path: root/testsuite/tests/plugins/test-echo-in-line.hs
blob: 858e507b11d47f77de54dcc23a2271a02cb5fe89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# OPTIONS -fplugin Echo1 -fplugin-opt Echo1:A #-}
{-# OPTIONS -fplugin-opt Echo2:B -fplugin Echo2 #-}

module Main where

foo :: IO a
foo = undefined

bar :: IO a
bar = undefined

main :: IO ()
main = return ()