diff options
Diffstat (limited to 'testsuite/tests/ghc-api/T6145.hs')
-rw-r--r-- | testsuite/tests/ghc-api/T6145.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/tests/ghc-api/T6145.hs b/testsuite/tests/ghc-api/T6145.hs index 184070c630..3a0d4ff0fb 100644 --- a/testsuite/tests/ghc-api/T6145.hs +++ b/testsuite/tests/ghc-api/T6145.hs @@ -35,12 +35,12 @@ main = do removeFile "Test.hs" print ok where - isDataCon (dL->L _ (AbsBinds { abs_binds = bs })) + isDataCon (L _ (AbsBinds { abs_binds = bs })) = not (isEmptyBag (filterBag isDataCon bs)) - isDataCon (dL->L l (f@FunBind {})) - | (MG _ (dL->L _ (m:_)) _) <- fun_matches f, - ((dL->L _ (c@ConPatOut{})):_)<-hsLMatchPats m, - (dL->L l _)<-pat_con c + isDataCon (L l (f@FunBind {})) + | (MG _ (L _ (m:_)) _) <- fun_matches f, + ((L _ (c@ConPatOut{})):_)<-hsLMatchPats m, + (L l _)<-pat_con c = isGoodSrcSpan l -- Check that the source location is a good one isDataCon _ = False |