aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/RecordWildCards/do-tuple-as-pattern.hs
{- ORACLE_TEST pass -}
{-# LANGUAGE RecordWildCards #-}
module DoTupleAsPattern where
data T = T { field :: Int }
f mx = do
(a, b@T {..}) <- mx
return undefined