ghc-exactprint-0.5.3.1: tests/examples/ghc80/overloadedrecfldsfail08.hs
{-# LANGUAGE DuplicateRecordFields, TypeFamilies #-}
data family F a
data instance F Int = MkFInt { x :: Int }
data instance F Bool = MkFBool { y :: Bool }
-- No data type has both these fields, but they belong to the same
-- lexical parent (F). This used to confuse DuplicateRecordFields.
foo e = e { x = 3, y = True }
main = return ()