Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Jul 17, 2024
1 parent 147a003 commit 207e6ba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions persistent-test/src/CompositeTest.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-} -- FIXME
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
module CompositeTest where
Expand Down
2 changes: 1 addition & 1 deletion persistent-test/src/RenameTest.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE TypeApplications, UndecidableInstances #-}
{-# LANGUAGE TypeApplications, TypeOperators, UndecidableInstances #-}

module RenameTest where

Expand Down
2 changes: 1 addition & 1 deletion persistent-test/src/TreeTest.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE RecordWildCards, UndecidableInstances #-}
{-# LANGUAGE RecordWildCards, TypeOperators, UndecidableInstances #-}

module TreeTest where

Expand Down
1 change: 1 addition & 0 deletions persistent-test/src/TypeLitFieldDefsTest.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -Wno-unused-top-binds #-}

Expand Down
1 change: 1 addition & 0 deletions persistent-test/src/UniqueTest.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
module UniqueTest where

Expand Down

0 comments on commit 207e6ba

Please sign in to comment.