/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/debug-info.rst:410: WARNING: duplicate ghc-flag description of -fno-info-table-map-with-stack, other instance in debug-info
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/debug-info.rst:438: WARNING: duplicate ghc-flag description of -fno-info-table-map-with-fallback, other instance in debug-info
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/phases.rst:370: WARNING: duplicate ghc-flag description of -U⟨symbol⟩, other instance in phases
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/phases.rst:646: WARNING: duplicate ghc-flag description of -fllvm, other instance in phases
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/phases.rst:1134: WARNING: duplicate ghc-flag description of -single-threaded, other instance in phases
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/phases.rst:1404: WARNING: duplicate ghc-flag description of -no-pie, other instance in phases
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/runtime_control.rst:1224: WARNING: duplicate rts-flag description of -hT, other instance in profiling
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/runtime_control.rst:1483: WARNING: duplicate rts-flag description of -xc, other instance in profiling
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using.rst:348: WARNING: duplicate ghc-flag description of -c, other instance in phases
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using.rst:392: WARNING: duplicate ghc-flag description of -shared, other instance in phases
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using.rst:412: WARNING: duplicate ghc-flag description of --show-iface ⟨file⟩, other instance in separate_compilation
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using-warnings.rst:175: WARNING: duplicate ghc-flag description of -w, other instance in using-warnings
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using-warnings.rst:239: WARNING: duplicate ghc-flag description of -Wwarn, other instance in using-warnings
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/bugs.rst:99: WARNING: Lexing literal_block 'ascDigit    →   0 | 1 | … | 9\ndecimal     →   ascDigit {ascDigit}' as "haskell" resulted in an error at token: '→'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/bugs.rst:109: WARNING: Lexing literal_block "uniSmall    →   any Unicode Lowercase Letter or Other Letter\nuniDigit    →   any Unicode Decimal Number, Letter Number or Other Number\n\nuniIdchar   →   any Unicode Modifier Letter or Non-Spacing Mark\nidchar      →   small | large | digit | uniIdchar | '\n\nvarid       →   small {idchar} ⟨reservedid⟩\nconid       →   large {idchar}" as "haskell" resulted in an error at token: '→'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/data_kinds.rst:148: WARNING: Lexing literal_block "data T = A'\ntype S = 'A'   -- ERROR: looks like a character\ntype R = ' A'  -- OK: promoted `A'`" as "haskell" resulted in an error at token: ' '. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/defer_type_errors.rst:128: WARNING: Lexing literal_block "Prelude> fst (True, 1 == 'a')\n\n<interactive>:2:12:\n    No instance for (Num Char) arising from the literal `1'\n    Possible fix: add an instance declaration for (Num Char)\n    In the first argument of `(==)', namely `1'\n    In the expression: 1 == 'a'\n    In the first argument of `fst', namely `(True, 1 == 'a')'" as "haskell" resulted in an error at token: ','. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/gadt.rst:215: WARNING: Lexing literal_block "• Couldn't match type ‘a’ with ‘Maybe z’\n  Expected: F a a\n    Actual: F (Maybe z) (Maybe z)" as "haskell" resulted in an error at token: '•'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/linear_types.rst:166: WARNING: Lexing literal_block '-- good\nlet %1 x = u in …\n\n-- good\nlet %1 !x = u in …\n\n-- bad\nlet %1 (x, y) = u in …\n\n-- good\nlet %Many (x, y) = u in …\n\n-- good\nlet %1 !(x, y) = u in …\n\n-- good\nlet %1 (!(x, y)) = u in …\n\n-- inferred unrestricted\nlet (x, y) = u in …\n\n-- can be inferred linear\ncase u of (x, y) -> …\n\n-- inferred unrestricted\ncase u of ~(x, y) -> …' as "haskell" resulted in an error at token: '…'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/linear_types.rst:195: WARNING: Lexing literal_block '-- good\nlet %1 x = u in …\n\n-- good\nlet %1 !x = u in …\n\n-- good\nlet %1 (x, y) = u in …\n\n-- bad\nlet %1 ~(x, y) = u in …\n\n-- good\nlet %Many ~(x, y) = u in …\n\n-- can be inferred linear\nlet (x, y) = u in …\n\n-- inferred unrestricted\nlet ~(x, y) = u in …' as "haskell" resulted in an error at token: '…'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/overloaded_labels.rst:110: WARNING: Lexing literal_block '{-# LANGUAGE DataKinds             #-}\n{-# LANGUAGE MultiParamTypeClasses #-}\n{-# LANGUAGE OverloadedLabels      #-}\n{-# LANGUAGE MagicHash             #-}\n\nimport Data.Foldable (traverse_)\nimport Data.Proxy (Proxy(..))\nimport GHC.OverloadedLabels (IsLabel(..))\nimport GHC.TypeLits (KnownSymbol, symbolVal)\nimport GHC.Prim (Addr#)\n\ninstance KnownSymbol symbol => IsLabel symbol String where\n  fromLabel = symbolVal (Proxy :: Proxy symbol)\n\n(#) :: String -> Int -> String\n(#) _ i = show i\n\nf :: Addr# -> Int -> String\nf _ i = show i\n\nmain :: IO ()\nmain = traverse_ putStrLn\n  [ #a\n  , #number17\n  , #do\n  , #type\n  , #Foo\n  , #3\n  , #199.4\n  , #17a23b\n  , #f\'a\'\n  , #\'a\'\n  , #\'\n  , #\'\'notTHSplice\n  , #...\n  , #привет\n  , #こんにちは\n  , #"3"\n  , #":"\n  , #"Foo"\n  , #"The quick brown fox"\n  , #"\\""\n  , (++) #hello#world\n  , (++) #"hello"#"world"\n  , #"hello"# 1 -- equivalent to `(fromLabel @"hello") # 1`\n  , f "hello"#2 -- equivalent to `f ("hello"# :: Addr#) 2`\n  ]' as "haskell" resulted in an error at token: 'こ'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/partial_type_signatures.rst:234: WARNING: Lexing literal_block 'arbitCs :: _ => a -> String\narbitCs x = show (succ x) ++ show (x == x)\n-- Inferred:\n--   forall a. (Enum a, Eq a, Show a) => a -> String\n-- Error:\nTest.hs:5:12: error:\n    Found constraint wildcard ‘_’ standing for ‘(Show a, Eq a, Enum a)’\n    To use the inferred type, enable PartialTypeSignatures\n    In the type signature:\n      arbitCs :: _ => a -> String' as "haskell" resulted in an error at token: '‘'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/partial_type_signatures.rst:250: WARNING: Lexing literal_block "-- Also a correct partial type signature:\narbitCs' :: (Enum a, _) => a -> String\narbitCs' x = arbitCs x\n-- Inferred:\n--   forall a. (Enum a, Show a, Eq a) => a -> String\n-- Error:\nTest.hs:9:22: error:\n    Found constraint wildcard ‘_’ standing for ‘()’\n    To use the inferred type, enable PartialTypeSignatures\n    In the type signature:\n      arbitCs' :: (Enum a, _) => a -> String" as "haskell" resulted in an error at token: '‘'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/partial_type_signatures.rst:267: WARNING: Lexing literal_block 'noCs :: _ => String\nnoCs = "noCs"\n-- Inferred: String\n-- Error:\nTest.hs:13:9: error:\n    Found constraint wildcard ‘_’ standing for ‘()’\n    To use the inferred type, enable PartialTypeSignatures\n    In the type signature:\n      noCs :: _ => String' as "haskell" resulted in an error at token: '‘'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/qualified_do.rst:90: WARNING: Lexing literal_block 'M.do { (x1 <- u1 | … | xn <- un); M.return e }  =\n  (\\x1 … xn -> e) `M.fmap` u1 M.<*> … M.<*> un\n\nM.do { (x1 <- u1 | … | xn <- un); stmts }  =\n  M.join ((\\x1 … xn -> M.do { stmts }) `M.fmap` u1 M.<*> … M.<*> un)' as "haskell" resulted in an error at token: '…'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/qualified_do.rst:102: WARNING: Lexing literal_block 'M.do { rec { x1 <- u1; … ; xn <- un }; stmts }  =\n  M.do\n  { (x1, …, xn) <- M.mfix (\\~(x1, …, xn) -> M.do { x1 <- u1; …; xn <- un; M.return (x1, …, xn)})\n  ; stmts\n  }' as "haskell" resulted in an error at token: '…'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/required_type_arguments.rst:346: WARNING: Lexing literal_block 'Term variable ‘a’ cannot be used here\n  (term variables cannot be promoted)' as "haskell" resulted in an error at token: '‘'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/required_type_arguments.rst:361: WARNING: Lexing literal_block 'The type variable ‘a’ is implicitly quantified,\neven though another variable of the same name is in scope:\n  ‘a’ defined at ...' as "haskell" resulted in an error at token: '‘'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/exts/type_applications.rst:87: WARNING: Lexing literal_block '> :set -XTypeApplications -fprint-explicit-foralls\n> let myLength1 :: Foldable f => f a -> Int; myLength1 = length\n> :type myLength1\nmyLength1 :: forall (f :: * -> *) a. Foldable f => f a -> Int\n> let myLength2 = length\n> :type myLength2\nmyLength2 :: forall {t :: * -> *} {a}. Foldable t => t a -> Int\n> :type myLength2 @[]\n\n<interactive>:1:1: error:\n    • Cannot apply expression of type ‘t0 a0 -> Int’\n      to a visible type argument ‘[]’\n    • In the expression: myLength2 @[]' as "haskell" resulted in an error at token: '•'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/javascript.rst:179: WARNING: Lexing literal_block '<button onClick="globalF(\'Button pressed!")>Example</button>' as "html" resulted in an error at token: ')'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/javascript.rst:225: WARNING: Pygments lexer name 'cabal' is not known
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/javascript.rst:343: WARNING: Lexing literal_block 'function h$getcwd(buf, off, buf_size) {\n#ifndef GHCJS_BROWSER\n  if (h$isNode()) {\n    try {\n      var cwd = h$encodeUtf8(process.cwd());\n      if (buf_size < cwd.len && buf_size !== 0) {\n        h$setErrno("ERANGE");\n        return (null, 0);\n      } else if (buf !== null) {\n        h$copyMutableByteArray(cwd, 0, buf, off, cwd.len);\n        RETURN_UBX_TUP2(buf, off);\n      } else if (buf_size === 0) {\n        RETURN_UBX_TUP2(cwd, 0);\n      } else {\n        var out = h$newByteArray(buf_size);\n        h$copyMutableByteArray(cwd, 0, out, off, cwd.len);\n      }\n    } catch (e) {\n      h$setErrno(e);\n      RETURN_UBX_TUP2(null, 0);\n    }\n  } else\n#endif\n    h$unsupported();\n    RETURN_UBX_TUP2(null, 0);\n}' as "javascript" resulted in an error at token: '#'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/separate_compilation.rst:746: WARNING: Lexing literal_block 'module A where\n    import B( TB(..) )\n\n    newtype TA = MkTA Int\n\n    f :: TB -> TA\n    f (MkTB x) = MkTA x\n\nmodule B where\n    import {-# SOURCE #-} A( TA(..) )\n\n    data TB = MkTB !Int\n\n    g :: TA -> TB\n    g (MkTA x) = MkTB x' as "haskell" resulted in an error at token: '{'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using.rst:916: WARNING: Lexing literal_block '-reexported-module "A as B"' as "haskell" resulted in an error at token: '"'. Retrying in relaxed mode.
/private/var/lib/gitlab-runner/builds/t1_GbeWmC/0/ghc/ghc/docs/users_guide/using-warnings.rst:2525: WARNING: Lexing literal_block '   module A (x) where\n\n   x :: Int\n   x = 2\n\n   module M (\n       {-# WARNING x "deprecated" #-} x\n       module A\n     )\n   import A\n\nWhen :ghc-flag:`-Wincomplete-export-warnings` is enabled, GHC warns about exports\nthat are not deprecating a name that is deprecated with another export in that module.' as "haskell" resulted in an error at token: '.'. Retrying in relaxed mode.
