summaryrefslogtreecommitdiff
path: root/testsuite/tests/rebindable/T14670.hs
blob: 8a99c576ed701fe6dec89d0096c4e7c219c07718 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE RebindableSyntax #-}

module Lib where

import Prelude (IO)

pure = undefined

foo :: IO ()
foo = do
  pure ()