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

module Main where

foo :: IO a
foo = undefined

bar :: IO a
bar = undefined

main :: IO ()
main = return ()