Skip to content

Commit

Permalink
Merge pull request #128 from well-typed/edsko/ghc-9.8-orphans
Browse files Browse the repository at this point in the history
Disable orphan warnings when declaring metadata
  • Loading branch information
edsko authored Apr 6, 2024
2 parents 37aa365 + 3edc1f8 commit d2cf931
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions demo-common/Demo/Common/API.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wno-orphans #-}

module Demo.Common.API (
-- * Greeter
Expand Down
1 change: 1 addition & 0 deletions interop/Interop/API.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wno-orphans #-}

module Interop.API (
-- * TestService
Expand Down
1 change: 1 addition & 0 deletions test-grapesy/Test/Driver/Dialogue/Execution.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wno-orphans #-}

module Test.Driver.Dialogue.Execution (
execGlobalSteps
Expand Down
1 change: 1 addition & 0 deletions test-grapesy/Test/Sanity/Interop.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE OverloadedLabels #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wno-orphans #-}

-- | Test functionality required by the gRPC interop tests
module Test.Sanity.Interop (tests) where
Expand Down
1 change: 1 addition & 0 deletions test-grapesy/Test/Sanity/StreamingType/NonStreaming.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -Wno-orphans #-}

module Test.Sanity.StreamingType.NonStreaming (tests) where

Expand Down
2 changes: 2 additions & 0 deletions test-stress/Test/Stress/Server/API.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{-# OPTIONS_GHC -Wno-orphans #-}

module Test.Stress.Server.API (
ManyShortLived
) where
Expand Down

0 comments on commit d2cf931

Please sign in to comment.