diff options
Diffstat (limited to 'testsuite/tests/rename/should_fail/rnfail015.hs')
-rw-r--r-- | testsuite/tests/rename/should_fail/rnfail015.hs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/tests/rename/should_fail/rnfail015.hs b/testsuite/tests/rename/should_fail/rnfail015.hs new file mode 100644 index 0000000000..20f9934f4b --- /dev/null +++ b/testsuite/tests/rename/should_fail/rnfail015.hs @@ -0,0 +1,20 @@ +module ShouldFail where + +-- !!! duplicate constructors in datatype +-- (bug report from Alex Ferguson, c. 2.06) + +data Token + = TokNewline + | TokLiteral + | TokCount + | TokCheck + | TokIs + | TokDeref + | TokFind + | TokLiteral -- Duplicated! + | TokThe + + deriving Show + +main = print TokCount + |