<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en" style='--code-editor-font: var(--default-mono-font, "GitLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, Consolas, Ubuntu Mono, Courier New, andale mono, lucida console, monospace;'>
<head>
<meta content="text/html; charset=US-ASCII" http-equiv="Content-Type">
<title>
GitLab
</title>

<style data-premailer="ignore" type="text/css">
a { color: #1068bf; }
</style>


<style>img {
max-width: 100%; height: auto;
}
body {
font-size: .875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px;
}
body {
font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; font-size: inherit;
}
</style>
</head>
<body style='font-size: inherit; -webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px; font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";'>
<div class="content">

<h3 style="margin-top: 20px; margin-bottom: 10px;">
Marge Bot pushed to branch master at <a href="https://gitlab.haskell.org/ghc/ghc">Glasgow Haskell Compiler / GHC</a>
</h3>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
Commits:
</h4>
<ul>
<li>
<strong style="font-weight: 600;"><a href="https://gitlab.haskell.org/ghc/ghc/-/commit/5b4774f93de579474d4ebb867234a07d93003f07">5b4774f9</a></strong>
<div>
<span> by sheaf </span> <i> at 2024-12-03T15:22:07+01:00 </i>
</div>
<pre class="commit-message" style='white-space: pre-wrap; display: block; font-size: 14px; color: #28272d; position: relative; font-family: "GitLab Mono","JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; border: 1px solid #dcdcde;'>Remove TcRnDeprecatedInvisTyArgInConPat mechanism

The combination of ScopedTypeVariables + TypeApplications now no longer
enables the use of type applications in constructor patterns, as per
GHC proposal #448.

This completes the deprecation that begun with GHC 9.8.

We also remove the -Wdeprecated-type-abstractions flag, which was
introduced in GHC 9.10.
</pre>
</li>
</ul>
<h4 style="margin-top: 10px; margin-bottom: 10px;">
30 changed files:
</h4>
<ul>
<li class="file-stats">
<a href="#2e5692f568fd7b67a6b172e2a60469da8392508c">
compiler/GHC/Driver/Flags.hs
</a>
</li>
<li class="file-stats">
<a href="#774d88050336ef660c7a219fb06c480c2fc639bc">
compiler/GHC/Driver/Session.hs
</a>
</li>
<li class="file-stats">
<a href="#cfa41b5649933e5b12f7796e9d49b9dd6a0bc59f">
compiler/GHC/Rename/Pat.hs
</a>
</li>
<li class="file-stats">
<a href="#1dd9c7a6bbc222c976a6ec1c4b772232ae60f7e5">
compiler/GHC/Tc/Errors/Ppr.hs
</a>
</li>
<li class="file-stats">
<a href="#cdba811872892f235fe7059df1a6c538fba60816">
compiler/GHC/Tc/Errors/Types.hs
</a>
</li>
<li class="file-stats">
<a href="#e2c828ee9e003df518a07b05beaa6971e5c62eb0">
compiler/GHC/Types/Error/Codes.hs
</a>
</li>
<li class="file-stats">
<a href="#3000f72e31f633a1742a9c76be14862281166b11">
docs/users_guide/9.14.1-notes.rst
</a>
</li>
<li class="file-stats">
<a href="#e16ae6db99f98868d3603a0c7df0bb6a793a330d">
docs/users_guide/using-warnings.rst
</a>
</li>
<li class="file-stats">
<a href="#00f87b970a212b1a12b2a5ec9ec7fc3ad7fd8386">
testsuite/tests/ghci/scripts/ghci024.stdout
</a>
</li>
<li class="file-stats">
<a href="#82100cceef61af2e89701b8b8428032758a84ffd">
testsuite/tests/ghci/scripts/ghci024.stdout-mingw32
</a>
</li>
<li class="file-stats">
<a href="#1ff3da4283b7b1165152df24f1a68b833e5e45c8">
testsuite/tests/rename/should_fail/Or3.hs
</a>
</li>
<li class="file-stats">
<a href="#e542c0bb42b957517d8b472c826b531511f913b2">
testsuite/tests/rename/should_fail/Or3.stderr
</a>
</li>
<li class="file-stats">
<a href="#ba3039283b058fd3ccb3e3e106353d9e0df3fe35">
testsuite/tests/rename/should_fail/T22478b.hs
</a>
</li>
<li class="file-stats">
<a href="#e2df39d81b450380a21f85a11d8553ca0aadc3ed">
testsuite/tests/rename/should_fail/T22478b.stderr
</a>
</li>
<li class="file-stats">
<a href="#8f6e4b2091b283b29fca0296a4d7f0a7c1d9c7cc">
testsuite/tests/typecheck/should_fail/T20443b.hs
</a>
</li>
<li class="file-stats">
<a href="#a4c7e362b170e9ed6342c6c76f95a48690202944">
testsuite/tests/typecheck/should_fail/T20443b.stderr
</a>
</li>
<li class="file-stats">
<a href="#6f1a5d006270ed5077d59521c0c5ea862423005c">
testsuite/tests/typecheck/should_fail/T22478c.hs
</a>
</li>
<li class="file-stats">
<a href="#e82d001b57e9f963727ee4f332ed593b6a17c00f">
testsuite/tests/typecheck/should_fail/T22478c.stderr
</a>
</li>
<li class="file-stats">
<a href="#6c9724fbbee5971641b6197a36e360bbe73db0ff">
testsuite/tests/typecheck/should_fail/T23776.stderr
</a>
</li>
<li class="file-stats">
<a href="#c5f2b4a5e03f67e009a6417f422bea6bdb4ad65e">
testsuite/tests/typecheck/should_fail/TyAppPat_ExistentialEscape.hs
</a>
</li>
<li class="file-stats">
<a href="#b8a4f728e42fa784ab24149094928623cde0c13b">
testsuite/tests/typecheck/should_fail/TyAppPat_NonlinearMultiAppPat.hs
</a>
</li>
<li class="file-stats">
<a href="#3a9413cec7af4cb23e90baa5a207c17e5ea015c1">
testsuite/tests/typecheck/should_fail/TyAppPat_NonlinearMultiPat.hs
</a>
</li>
<li class="file-stats">
<a href="#0f762e77f62eda74fde58400e90aff564c3d40cb">
testsuite/tests/typecheck/should_fail/TyAppPat_NonlinearSinglePat.hs
</a>
</li>
<li class="file-stats">
<a href="#52c5024a3dae3cae872ada91236e8d098a28c26e">
testsuite/tests/typecheck/should_fail/TyAppPat_NonlinearSinglePat.stderr
</a>
</li>
<li class="file-stats">
<a href="#dfeec118d23c5facd9cfa42046d8be5deb8d80fb">
testsuite/tests/typecheck/should_fail/TyAppPat_Nonmatching.hs
</a>
</li>
<li class="file-stats">
<a href="#8df1b9cbe6ab4d301a9ba66ff85852c25dfdec5c">
testsuite/tests/typecheck/should_fail/TyAppPat_PatternBinding.hs
</a>
</li>
<li class="file-stats">
<a href="#91c474656ae9aa1f19f3e34803be43b9c0b4976f">
testsuite/tests/typecheck/should_fail/TyAppPat_PatternBindingExistential.hs
</a>
</li>
<li class="file-stats">
<a href="#89c458dd7d1a8b3cc1d445c91a56460bf4350f4c">
testsuite/tests/typecheck/should_fail/TyAppPat_TooMany.hs
</a>
</li>
<li class="file-stats">
<a href="#871b74effd6120c0f98b46f0cfe0019cfaedbaec">
testsuite/tests/typecheck/should_fail/TyAppPat_TooMany.stderr
</a>
</li>
<li class="file-stats">
<a href="#d24684df3834ef4ea09bbf7aeb167ccc617e06a4">
testsuite/tests/wcompat-warnings/Template.hs
</a>
</li>
</ul>
<h5 style="margin-top: 10px; margin-bottom: 10px; font-size: .875rem;">
The diff was not included because it is too large.
</h5>

</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #737278;">

<br>
<a href="https://gitlab.haskell.org/ghc/ghc/-/commit/5b4774f93de579474d4ebb867234a07d93003f07">View it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target="_blank" rel="noopener noreferrer" href="https://gitlab.haskell.org">gitlab.haskell.org</a>. <a href="https://gitlab.haskell.org/-/profile/notifications" target="_blank" rel="noopener noreferrer" class="mng-notif-link">Manage all notifications</a> · <a href="https://gitlab.haskell.org/help" target="_blank" rel="noopener noreferrer" class="help-link">Help</a>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","url":"https://gitlab.haskell.org/ghc/ghc/-/commit/5b4774f93de579474d4ebb867234a07d93003f07"}}</script>


</p>
</div>
</body>
</html>