Skip to content

Commit 8821db3

Browse files
committed
Review suggestions for GHC-17335
1 parent 3408dd5 commit 8821db3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

message-index/messages/GHC-17335/dsIncompleteRecSel/after/DsIncompleteRecSel.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ module DsIncompleteRecSel where
22

33
data T = T1 | T2 {x :: Bool}
44

5+
f :: T -> Bool
56
f T1 = True -- handle the T1 case
67
f a = x a

message-index/messages/GHC-17335/dsIncompleteRecSel/before/DsIncompleteRecSel.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ module DsIncompleteRecSel where
22

33
data T = T1 | T2 {x :: Bool}
44

5+
f :: T -> Bool
56
f a = x a

0 commit comments

Comments
 (0)