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

module Main where

foo :: IO a
foo = undefined

bar :: IO a
bar = undefined

main :: IO ()
main = return ()