summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail092.hs
blob: 747f0ca3c73748ea4c136989a2239ba77a34c355 (plain)
1
2
3
4
5
6
7
{-# LANGUAGE ParallelListComp #-}

-- !!! Illegal conflicting parallel bindings

module ShouldFail where

xys = [ () | let a = 13 | let a = 17 ]