Skip to content

Commit 32b5cbc

Browse files
Disable test on GHC 8.8.x.
1 parent a475307 commit 32b5cbc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/functional/TypeDefinition.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ tests = testGroup "type definitions" [
1919
$ getTypeDefinitionTest' (16, 21) 13
2020
, testCase "finds local definition of sum type variable"
2121
$ getTypeDefinitionTest' (21, 13) 18
22-
, testCase "finds local definition of sum type constructor"
22+
, knownBrokenForGhcVersions [GHC88] "Definition of sum type not found from data constructor in GHC 8.8.x" $
23+
testCase "finds local definition of sum type constructor"
2324
$ getTypeDefinitionTest' (24, 7) 18
2425
, testCase "finds non-local definition of type def"
2526
$ getTypeDefinitionTest' (30, 17) 27

0 commit comments

Comments
 (0)