diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2021-02-22 10:31:56 +0100 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2021-02-22 10:39:18 +0100 |
commit | 606e3f220d20688c7baff94bef525a13434dc56b (patch) | |
tree | f9724712e17b92abaca1dcb9b67f1eca3a06cb04 /latex-test/src | |
parent | d1b7f181b60ba3ac191183f1512e66793d28ac08 (diff) |
html-test: Always set language
from ghc-9.2 on, the “default” langauge of GHC is expected to change
more wildly. To prepare for that (and unblock
https://gitlab.haskell.org/ghc/ghc/-/merge_requests/4853), this sets the
language for all the test files to `Haskell2010`. This should insolate
this test suite against changes to the default.
Cherry-picked from https://github.com/haskell/haddock/pull/1341
Diffstat (limited to 'latex-test/src')
-rw-r--r-- | latex-test/src/ConstructorArgs/ConstructorArgs.hs | 1 | ||||
-rw-r--r-- | latex-test/src/DefaultSignatures/DefaultSignatures.hs | 1 | ||||
-rw-r--r-- | latex-test/src/Deprecated/Deprecated.hs | 1 | ||||
-rw-r--r-- | latex-test/src/Example/Example.hs | 1 | ||||
-rw-r--r-- | latex-test/src/GadtConstructorArgs/GadtConstructorArgs.hs | 1 | ||||
-rw-r--r-- | latex-test/src/LinearTypes/LinearTypes.hs | 1 | ||||
-rw-r--r-- | latex-test/src/NamespacedIdentifier/NamespacedIdentifier.hs | 1 | ||||
-rw-r--r-- | latex-test/src/Simple/Simple.hs | 1 | ||||
-rw-r--r-- | latex-test/src/TypeFamilies3/TypeFamilies3.hs | 1 | ||||
-rw-r--r-- | latex-test/src/UnboxedStuff/UnboxedStuff.hs | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/latex-test/src/ConstructorArgs/ConstructorArgs.hs b/latex-test/src/ConstructorArgs/ConstructorArgs.hs index 6b0da711..c3b848c3 100644 --- a/latex-test/src/ConstructorArgs/ConstructorArgs.hs +++ b/latex-test/src/ConstructorArgs/ConstructorArgs.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} {-# LANGUAGE GADTs, PatternSynonyms #-} module ConstructorArgs (Foo(..), Boo(Foo, Foa, Fo, Fo'), pattern Bo, pattern Bo') where diff --git a/latex-test/src/DefaultSignatures/DefaultSignatures.hs b/latex-test/src/DefaultSignatures/DefaultSignatures.hs index 52d68a96..1b1b8257 100644 --- a/latex-test/src/DefaultSignatures/DefaultSignatures.hs +++ b/latex-test/src/DefaultSignatures/DefaultSignatures.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} {-# LANGUAGE DefaultSignatures #-} module DefaultSignatures where diff --git a/latex-test/src/Deprecated/Deprecated.hs b/latex-test/src/Deprecated/Deprecated.hs index aecec94e..bf7755c6 100644 --- a/latex-test/src/Deprecated/Deprecated.hs +++ b/latex-test/src/Deprecated/Deprecated.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} module Deprecated where -- | Docs for something deprecated diff --git a/latex-test/src/Example/Example.hs b/latex-test/src/Example/Example.hs index 42ff1646..932fddfa 100644 --- a/latex-test/src/Example/Example.hs +++ b/latex-test/src/Example/Example.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} module Example where -- | Example use. diff --git a/latex-test/src/GadtConstructorArgs/GadtConstructorArgs.hs b/latex-test/src/GadtConstructorArgs/GadtConstructorArgs.hs index 79ffb4d3..6d742bd7 100644 --- a/latex-test/src/GadtConstructorArgs/GadtConstructorArgs.hs +++ b/latex-test/src/GadtConstructorArgs/GadtConstructorArgs.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} {-# LANGUAGE GADTs, PatternSynonyms #-} module GadtConstructorArgs (Boo(..)) where diff --git a/latex-test/src/LinearTypes/LinearTypes.hs b/latex-test/src/LinearTypes/LinearTypes.hs index cb4eb138..c4f9c84f 100644 --- a/latex-test/src/LinearTypes/LinearTypes.hs +++ b/latex-test/src/LinearTypes/LinearTypes.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} {-# LANGUAGE LinearTypes #-} module LinearTypes where diff --git a/latex-test/src/NamespacedIdentifier/NamespacedIdentifier.hs b/latex-test/src/NamespacedIdentifier/NamespacedIdentifier.hs index 6f59d247..38fb7101 100644 --- a/latex-test/src/NamespacedIdentifier/NamespacedIdentifier.hs +++ b/latex-test/src/NamespacedIdentifier/NamespacedIdentifier.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} module NamespacedIdentifiers where -- | A link to: diff --git a/latex-test/src/Simple/Simple.hs b/latex-test/src/Simple/Simple.hs index 7c6b9744..d1c7cf6d 100644 --- a/latex-test/src/Simple/Simple.hs +++ b/latex-test/src/Simple/Simple.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} module Simple (foo) where -- | This is foo. diff --git a/latex-test/src/TypeFamilies3/TypeFamilies3.hs b/latex-test/src/TypeFamilies3/TypeFamilies3.hs index bde05fb8..80279e36 100644 --- a/latex-test/src/TypeFamilies3/TypeFamilies3.hs +++ b/latex-test/src/TypeFamilies3/TypeFamilies3.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} {-# LANGUAGE TypeFamilies #-} module TypeFamilies3 where diff --git a/latex-test/src/UnboxedStuff/UnboxedStuff.hs b/latex-test/src/UnboxedStuff/UnboxedStuff.hs index bd1b1302..dfeb7429 100644 --- a/latex-test/src/UnboxedStuff/UnboxedStuff.hs +++ b/latex-test/src/UnboxedStuff/UnboxedStuff.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE Haskell2010 #-} {-# LANGUAGE UnboxedSums, UnboxedTuples #-} module UnboxedStuff where |