about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/repl-name-conflicts/PreludeShadowing.hs
blob: 02ecd02684baf51679c94e30ae5ae95a291f4e38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}

module PreludeShadowing where

import           Data.ByteString

(>>=) :: ByteString -> ByteString -> ByteString
_ >>= _ = "blah"

stdin :: ByteString
stdin = "stdin"