Skip to content
Snippets Groups Projects
Commit 38cc2ea3 authored by sof's avatar sof
Browse files

[project @ 1999-09-01 14:24:27 by sof]

qualified import reg. test
parent 67c513a8
No related merge requests found
-- !!! Check that 'qualified' doesn't bring the unqual'ed name into scope.
module ShouldFail where
import qualified List as L ( intersperse )
x = L.intersperse
y = intersperse
==================== Parser ====================
module ShouldFail where
import qualified List as L (intersperse)
{- rec -}
y = intersperse
x = L.intersperse
read010.hs:8: Variable not in scope: `intersperse'
Compilation had errors
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment