From 260e9b5fa6337fee8ff51dd680dea53b1fba0e39 Mon Sep 17 00:00:00 2001 From: sof Date: Wed, 1 Sep 1999 14:21:41 +0000 Subject: [PATCH] [project @ 1999-09-01 14:21:41 by sof] Test which verifies that special ids are correctly handled by the front-end --- ghc/tests/reader/should_compile/read024.hs | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ghc/tests/reader/should_compile/read024.hs diff --git a/ghc/tests/reader/should_compile/read024.hs b/ghc/tests/reader/should_compile/read024.hs new file mode 100644 index 0000000..10e31cd --- /dev/null +++ b/ghc/tests/reader/should_compile/read024.hs @@ -0,0 +1,30 @@ +-- !!! checking that special ids are correctly handled. +module ShouldCompile where + +as :: [as] +as = [head as] + +qualified :: [qualified] +qualified = [head qualified] + +hiding :: [hiding] +hiding = [head hiding] + +export :: [export] +export = [head export] + +label :: [label] +label = [head label] + +dynamic :: [dynamic] +dynamic = [head dynamic] + +unsafe :: [unsafe] +unsafe = [head unsafe] + +stdcall :: [stdcall] +stdcall = [head stdcall] + +ccall :: [ccall] +ccall = [head ccall] + -- 1.7.10.4