{"id":36425,"date":"2026-04-14T08:00:53","date_gmt":"2026-04-14T08:00:53","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/cppblog\/?p=36425"},"modified":"2026-04-14T21:05:00","modified_gmt":"2026-04-14T21:05:00","slug":"msvc-build-tools-version-14-51-release-candidate-now-available","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/cppblog\/msvc-build-tools-version-14-51-release-candidate-now-available\/","title":{"rendered":"MSVC Build Tools Version 14.51 Release Candidate Now Available"},"content":{"rendered":"<p>We are pleased to announce the availability of the release candidate for Microsoft C++ (MSVC) Build Tools version 14.51. This is the last MSVC v14.51 preview before it moves to stable status and full support. You can download it from the <a href=\"https:\/\/visualstudio.microsoft.com\/insiders\">Visual Studio 2026 Insiders Channel<\/a>. As this is the release candidate, it is now the default toolset installed with C++ workloads in this channel. To check if it&#8217;s installed simply make sure one or both of these components are checked in the installer:<\/p>\n<ol>\n<li>MSVC Build Tools for x64\/x86 (Latest)<\/li>\n<li>MSVC Build Tools for ARM64\/ARM64EC (Latest)<\/li>\n<\/ol>\n<p>The version number printed by cl.exe and link.exe will be at least 14.51.36231.<\/p>\n<p>We appreciate any feedback that you may have. Please report any issues on <a href=\"https:\/\/developercommunity.visualstudio.com\/index.html\">Visual Studio Developer Community<\/a> so we can address them by the time we move out of preview.<\/p>\n<p>Version 14.51 is expected to go stable in May and will ship with the 18.6 release of Visual Studio (Stable channel). Once it goes stable, this release of MSVC will receive 9 months of servicing fixes, as described in <a href=\"https:\/\/devblogs.microsoft.com\/cppblog\/new-release-cadence-and-support-lifecycle-for-msvc-build-tools\/\">New release cadence and support lifecycle for Microsoft C++ Build Tools<\/a>.<\/p>\n<p>This post summarizes the work done by the MSVC team between the 14.50 and 14.51 releases. This encompasses changes across the compiler frontend, backend, linker, standard library, and related tools.<\/p>\n<h2>C++ Standards Conformance<\/h2>\n<p>The frontend team continued implementing C++23 and C++20 features and fixing conformance issues:<\/p>\n<ul>\n<li><strong>C++23 Implementations:<\/strong> Please see the <a href=\"https:\/\/devblogs.microsoft.com\/cppblog\/c23-support-in-msvc-build-tools-14-51\">C++23 Support in MSVC Build Tools 14.51<\/a> blog post for details.<\/li>\n<li><strong>Consteval Improvements:<\/strong> Multiple fixes to <code>consteval<\/code> function handling, constexpr <code>new<\/code>\/<code>delete<\/code> in modules, initializer list backing arrays, <code>\/experimental:constevalVfuncVtable<\/code> behavior now enabled by default, and better error diagnostics for failed constant expressions.<\/li>\n<li><strong>Coroutine Improvements:<\/strong> Coroutine-related globals refactoring, and deprecation of experimental coroutine headers.<\/li>\n<li><strong>Parser Modernization:<\/strong> Recursive descent parser now handles <code>[[attributes]]<\/code>, with continued improvements to error recovery and removal of legacy token accessors.<\/li>\n<li><strong>C Language Improvements:<\/strong> Added <code>_Atomic<\/code> qualifier support, removed incorrect diagnostics for C99 flexible array members, and added <code>__typeof__<\/code> support for function types.<\/li>\n<\/ul>\n<h2>Code Generation<\/h2>\n<p>The backend optimizer received significant investment across many areas:<\/p>\n<ul>\n<li><strong>Sample-based profile guided optimizations:<\/strong> Support for sample-based profile guided optimizations with supporting tools. More details to follow in a future blog post.<\/li>\n<li><strong>Static Single-Assignment (SSA) optimization improvements:<\/strong> Implemented dozens of new algebraic simplification patterns, including ternary operator patterns, arithmetic patterns, and min\/max.<\/li>\n<li><strong>Common Subexpression Elimination (CSE):<\/strong> Improve CSE of loads of <code>[x + C]<\/code> through if\/else joins, redundant stores, and has improved multibyte aliasing checks.<\/li>\n<li><strong>Scalar Replacement of Aggregates (SROA):<\/strong> More aggressive unpacking of structures.<\/li>\n<li><strong>Loop Optimizations:<\/strong> Linear Function Test Replace (LFTR) signedness fixes and counted loop optimizations when the primary induction is used after the loop.<\/li>\n<li><strong>Inlining:<\/strong> Extended limited call-site inlining, and improved propagation of parameter type information when inlining.<\/li>\n<li><strong>Copy Propagation:<\/strong> Multiple improvements to copy propagation for integer constants and sequential copies.<\/li>\n<li><strong>Strength Reduction:<\/strong> Implemented reduction of conversions as a strength-reduction optimization.<\/li>\n<li><strong>Predicate and Jump Threading:<\/strong> Improvements to predicate-based optimizations for eliminating bound checks, including better use of predicates from min patterns.<\/li>\n<li><strong>Stack Layout:<\/strong> The compiler now prefers pushing callee-saved registers onto the stack over using shadow slots, reducing function prologue\/epilogue overhead.<\/li>\n<li><strong>PGO:<\/strong> Improved per-function size\/speed trade-offs to mitigate unrepresentative profiles and PGO trimming improvements.<\/li>\n<li><strong>Restrict Pointers:<\/strong> Added support for restrict pointer semantics to enable additional aliasing optimizations.<\/li>\n<li><strong>Pattern matching optimizations:<\/strong> New patterns for <code>MSUB<\/code>\/<code>MADD<\/code> generation, <code>ADC<\/code>\/<code>SBB<\/code> for conditional add\/subtraction, and <code>CMOVE<\/code>\/<code>NE<\/code> variants.<\/li>\n<li><strong>Intel APX:<\/strong> Preview support of Intel APX (Advanced Performance Extensions) in the MSVC toolchain. More details to follow.<\/li>\n<\/ul>\n<h2>ARM64 &amp; SVE<\/h2>\n<ul>\n<li><strong>SVE (Scalable Vector Extension) Support:<\/strong> Major new feature bringing ARM SVE to MSVC, including frontend type support for SVE scalar and aggregated types, intrinsic lowering, callee-saved register unwinding, variadic function parameter passing, header file installation, and tryblock\/funclet support. Multiple ICE and miscompilation fixes were addressed.<\/li>\n<li><strong>Shrink Wrapping:<\/strong> Fixed multiple issues including epilog-only fragment unwind info, codegen bugs with chkstk killing X15, and multi-entry shrink wrap regions.<\/li>\n<li><strong>Code Quality:<\/strong> New patterns for <code>CSEL pow2, 0 + ORR \u2192 CSET + ORR_SHIFT<\/code>, optimized <code>NEON_DUPR<\/code>, removed redundant <code>NEON_INSR<\/code> after <code>NEON_DUPR<\/code>, ARM NEON patterns for x264, instruction fusion improvements, register retyping after globregs, and function alignment tuning.<\/li>\n<li><strong>DIA SDK:<\/strong> Full SVE support in the debug interface, including <code>RtlpGetSveContextPointers<\/code> and <code>IDiaStackWalkHelper3<\/code>.<\/li>\n<\/ul>\n<h2>SIMD &amp; Vectorization<\/h2>\n<ul>\n<li><strong>SLP Vectorizer:<\/strong> Improvements to Superword Level Parallelism (SLP) vectorization:\n<ul>\n<li>Scalar reduction vectorization<\/li>\n<li>Generic and oversized vector instruction support<\/li>\n<li>Permute optimizations and oversized select support<\/li>\n<\/ul>\n<\/li>\n<li><strong>Vectorizer Improvements:<\/strong> Hoisting of vectorized inner loop pointer overlap checks to parent loops, character-count loop support, non-contiguous memory access support for 2-byte data types, and improved low trip count heuristics on ARM64.<\/li>\n<li><strong>AVX\/SSE:<\/strong> AVX512 <code>memcpy<\/code>\/<code>memset<\/code>, AVX2 <code>memcmp<\/code> override, AVX10.2, and vectorized bitmasking patterns for x264.<\/li>\n<\/ul>\n<h2>Linker &amp; PDB<\/h2>\n<ul>\n<li><strong>DIA:<\/strong> COM initialization thread safety, and SVE support.<\/li>\n<li><strong>PDB Fuzzing:<\/strong> Triggered PDB fuzzing from nightly builds.<\/li>\n<li><strong>SPGO:<\/strong> Sample-based profile guided optimizations available for use.<\/li>\n<\/ul>\n<h2>Standard Library (STL)<\/h2>\n<p>On GitHub, the <a href=\"https:\/\/github.com\/microsoft\/STL\">microsoft\/STL<\/a> repo tracks its status with a high level of detail; see the <a href=\"https:\/\/github.com\/microsoft\/STL\/wiki\/Changelog#msvc-build-tools-1451\">Changelog for MSVC Build Tools 14.51<\/a>. Notable library features that are newly available:<\/p>\n<ul>\n<li><a href=\"https:\/\/wg21.link\/P0429R9\">P0429R9<\/a> &#8211; <code>&lt;flat_map&gt;<\/code><\/li>\n<li><a href=\"https:\/\/wg21.link\/P1222R4\">P1222R4<\/a> &#8211; <code>&lt;flat_set&gt;<\/code><\/li>\n<li><a href=\"https:\/\/wg21.link\/P2255R2\">P2255R2<\/a> &#8211; Type Traits To Detect References Binding To Temporaries<\/li>\n<li><a href=\"https:\/\/wg21.link\/P2590R2\">P2590R2<\/a> &#8211; Explicit Lifetime Management<\/li>\n<li><a href=\"https:\/\/wg21.link\/P2674R1\">P2674R1<\/a> &#8211; <code>is_implicit_lifetime<\/code><\/li>\n<\/ul>\n<p>Other notable changes:<\/p>\n<ul>\n<li>We&#8217;ve massively overhauled <code>&lt;regex&gt;<\/code> to fix long-standing correctness and performance problems that have been present since its initial implementation in VS 2008 SP1. After almost two decades, the stack overflows are finally fixed!<\/li>\n<li>We&#8217;ve continued to add and improve SIMD-vectorized STL algorithms, using SSE4.2 and AVX2 for x64\/x86, and (newly shipping in MSVC Build Tools 14.51) using NEON for ARM64\/ARM64EC.<\/li>\n<li>We&#8217;ve implemented 18 LWG issue resolutions.<\/li>\n<li>We&#8217;ve removed long-deprecated non-Standard features, such as TR1, <code>&lt;hash_map&gt;<\/code>, <code>&lt;hash_set&gt;<\/code>, <code>&lt;experimental\/filesystem&gt;<\/code>, <code>stdext::checked_array_iterator<\/code>, and <code>stdext::unchecked_array_iterator<\/code>.<\/li>\n<\/ul>\n<p>All of this has been possible thanks to our amazing GitHub contributors.<\/p>\n<h2>AddressSanitizer (ASan)<\/h2>\n<ul>\n<li><strong>ARM64 Support:<\/strong> Improved ASan for ARM64 support with comprehensive library packaging, interception fixes, and false-positive resolutions.<\/li>\n<li><strong>SanitizerCoverage:<\/strong> Fixed blocklist handling, codegen issues, and forward declarations to ensure sancov initializers are invoked.<\/li>\n<li><strong>Performance:<\/strong> Cached walked heaps for performance improvements during shadow memory operations.<\/li>\n<\/ul>\n<h2>Modules &amp; IFC<\/h2>\n<ul>\n<li><strong>IFC Version Update:<\/strong> The MSVC frontend generates IFC files according to the <a href=\"https:\/\/github.com\/microsoft\/ifc-spec\/releases\/tag\/0.44\">0.44 version<\/a> of the <a href=\"https:\/\/github.com\/microsoft\/ifc-spec\">IFC specification<\/a>.<\/li>\n<li><strong>Concurrency Fix:<\/strong> Fixed a use-after-free race in concurrent IFC debug record resolution.<\/li>\n<\/ul>\n<h2>Static Analysis<\/h2>\n<ul>\n<li><strong>EspX Consolidation:<\/strong> Merged EspX and its extensions like CppCoreCheck into a single DLL, simplifying deployment.<\/li>\n<li><strong>Bug Fixes:<\/strong> Fixed false positives from inexact location dereference, and a number of internal compiler errors (ICE) under \/analyze.<\/li>\n<\/ul>\n<h2>ARM64EC &amp; ARM64X<\/h2>\n<ul>\n<li><strong>Coroutine Support:<\/strong> Fixed missing entry thunks for coroutine outlinees and ramp functions.<\/li>\n<li><strong>ICF:<\/strong> Improved identical COMDAT folding (ICF) optimization in ARM64X binaries.<\/li>\n<li><strong>Volatile XMM:<\/strong> Fixed ARM64EC volatile XMM assignment.<\/li>\n<\/ul>\n<h2>Diagnostics<\/h2>\n<ul>\n<li>Fixed <a href=\"https:\/\/learn.microsoft.com\/cpp\/error-messages\/compiler-warnings\/compiler-warning-level-1-c4319\">C4319<\/a> not being emitted when compiling C code.<\/li>\n<li>Removed incorrect diagnostics for C99 flexible array members.<\/li>\n<li>Warning <a href=\"https:\/\/learn.microsoft.com\/cpp\/error-messages\/compiler-warnings\/compiler-warning-level-1-c4789\">C4789<\/a> improved to reduce false positives.<\/li>\n<\/ul>\n<h2>Debug Info<\/h2>\n<ul>\n<li>Enabled debug info pruning to reduce PDB sizes.<\/li>\n<\/ul>\n<hr \/>\n<h2>Tickets Fixed<\/h2>\n<p>The following customer-reported issues were fixed in this release:<\/p>\n<ul>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/__builtin_bit_cast-Internal-compiler-err\/10939926\">__builtin_bit_cast Internal compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/__typeof__-not-working-with-function-typ\/10891974\"><strong>typeof<\/strong> not working with function types<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/_Must_inspect_result_-false-positive-C\/10967306\">_Must_inspect<em>result<\/em> false positive (C++)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/_statusfp-scheduled-before-floating-poin\/10942229\">_statusfp scheduled before floating point operations<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/LINK-:-error-LNK2001:-unresolved-extern\/10932429\">&#8220;LINK : error LNK2001: unresolved external symbol&#8221; after upgrading to VS 17.14.5<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/REXB-NOP-is-interpreted-as-XCHG-EAX\/10971934\">&#8220;REX.B NOP&#8221; is interpreted as &#8220;XCHG EAX,R8d&#8221; by the CPU, but VS 2026 disassembles it as a NOP<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/permissive--and-template-implies-error-C\/384961\">[\/permissive-] and template implies error C3688: invalid literal suffix &#8216;_s&#8217;<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-dynamic-debugging-initialises-static\/10887468\">[17.14.15] [Feedback] C++ dynamic debugging initialises static locals incorrectly<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ARM64-Subtraction-and-comparison-of-UL\/10857952\">[ARM64] Subtraction and comparison of ULONGLONG&#8217;s uses W registers<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-minmax-ternary-logic-expression-b\/10946247\">[C++] min\/max ternary logic expression broken in combination with integer type promotions<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C20-Modules-Error-LNK2001-when-impor\/10892921\">[C++20 Modules] Error LNK2001 when importing a static class\/struct member from a module from a DLL<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/accepts-invalid-Pointer-to-member-of-b\/10963535\">[Neg] [accepts invalid] Pointer-to-member of base class as template argument<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Deleting-of-templated-class-specific-ope\/11008899\">[Neg][std:c++20] Deleting of templated class-specific operator new is not detected by constraints<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/One-can-modify-a-capture-in-non-mutable-\/10617278\">[Neg][std:c++latest] One can modify a capture in non-mutable lambda via C++ deducing this<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/No-CopyElision-performed-when-initializi\/1190376\">[permissive-] No CopyElision performed when initializing via initializer list<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/std::enable_if-compile-error-after-updat\/10939927\">[permissive-] std::enable_if compile error after updating from 17.13 to 17.14<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Issue-in-specific-conditions-with-modulo\/10940009\">[permissive-][Regression] Issue in specific conditions with modulo operator in variadic template with &#8220;\/permissive-&#8221; after version 19.32.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/msvc-error-C1001:-Internal-compiler-erro\/10992638\">[permissive-][Regression] msvc error C1001: Internal compiler error (compiler file &#8216;msc1.cpp&#8217;, line 1589)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/No-ADL-in-default-member-initializer-due\/11050465\">[Permissive-][Regression] No ADL in default member initializer due to local free function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/__FUNCSIG__-is-empty-for-an-auto-lambda-\/10956190\">[Regression] <strong>FUNCSIG<\/strong> is empty for an auto lambda assigned to a std::function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/warning-C5287:-operands-are-different-e\/10877942\">[Regression] &#8220;warning C5287: operands are different enum types&#8221; even with an explicit cast<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C2106-:-left-operand-must-be-l-value-\/10998962\">[Regression] C2106 &#8216;=&#8217;: left operand must be l-value Visual Studio 2026 Insiders [11206.111]<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/cl:-internal-compiler-error-on-relativel\/10947170\">[Regression] cl: internal compiler error on relatively simple, bit-manipulation code<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Empty-compound-literal-array-causes-inte\/10877418\">[Regression] Empty compound literal array causes internal compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/error-C2593-caused-by-static-operator-\/10999669\">[regression] error C2593 caused by static operator[] in C++23 mode<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/fatal-error-C1001:-Internal-compiler-err\/11018372\">[Regression] fatal error C1001: Internal compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/regression-Incorrect-code-generation-f\/10999205\">[Regression] Incorrect code generation for &amp;= in 17.14<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-math-result-using-boost::ratio\/11024527\">[Regression] Incorrect math result using boost::rational and google test<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-in-VS2022-1710\/10932332\">[Regression] Internal compiler error in VS2022 17.10+<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-trying-to-c\/11026978\">[Regression] Internal compiler error when trying to compile simple C++ program<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/regression-lambda-capture-nonmovable-b\/10962703\">[regression] lambda capture nonmovable by reference doesn&#8217;t work since MSVC17.4<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/msdia140dll-ver-1450357190-CDiaSymbo\/11023699\">[Regression] msdia140.dll ver 14.50.35719.0 CDiaSymbol::get_virtual always returns false<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-1944352071-C2352-when-calling-ba\/10909710\">[Regression] MSVC 19.44.35207.1 C2352 when calling base class method<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-1951-miscompiles-ffmpeg-for-arm64\/11056917\">[Regression] MSVC 19.51 miscompiles ffmpeg for arm64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-2026-pointer-subtraction-of-consecu\/11031470\">[Regression] MSVC 2026 pointer subtraction of consecutive members of struct with same type leads to unexpected value<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-crashes-when-there-are-at-least-655\/10946374\">[Regression] MSVC crashes when there are at least 65536 template parameter in a parameter pack in CTAD<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/problems-with-Visual-Stdio-2022-171415\/10970302\">[Regression] problems with Visual Stdio 2022 17.14.15 update &#8211; LINK : fatal error LNK1000<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/v1950-x64-optimizer-generates-incorrec\/11012713\">[Regression] v.19.50 x64 optimizer generates incorrect code with \/O2 and \/EHs<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Visual-Studio-compiler-falsely-optimize-\/11022446\">[Regression] Visual Studio compiler falsely optimize branch in code under v143 and v145 toolsets<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VS2026-generates-incorrect-FP-code\/11042684\">[Regression] VS2026 generates incorrect FP code<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Lambda-with-deducing-this-parameter-of-u\/11032937\">[Regression][Neg][std:c++latest] Lambda with deducing this parameter of unrelated type is wrongly permitted<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/regression-InitAll-in-VS2026-in-initia\/11040671\">[Regression][Office] InitAll in VS2026 in initializing a pointer in a vector<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Forward-type-declaration-doesnt-work-du\/11021209\">[Regression][std:c++20] Forward type declaration doesn&#8217;t work during type specialization if the forward-declared type name is ambiguous<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Regression-ICE-on-CTAD-for-alias-templ\/10881487\">[Regression][std:c++20] ICE on CTAD for alias template with <code>std::array<\/code><\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-using-condi\/11008466\">[Regression][std:c++20] Internal compiler error when using conditionally-copyable types<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Rejects-valid-qualified-type-name-involv\/10870405\">[Regression][std:c++20] Rejects valid qualified type name involving lambda in decltype<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Silent-Bad-CodeGen:-Regression-in-Lambda\/11030256\">[Regression][std:c++20] Silent Bad CodeGen: Regression in Lambda Capture Constant Folding (v143, v145)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/INTERNAL-COMPILER-ERROR:-MSVC-V1950356\/10980141\">[Regresssion] INTERNAL COMPILER ERROR: MSVC V19.50.35615 for x64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Arm64-optimization-bug-for-expf\/10881359\">[ssa-patterns-vect] Arm64 optimization bug for expf<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-when-defining-C\/10872377\">[std:c++17] Internal Compiler Error when defining C++17 static data member of template and its constructor takes certain arguments<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CLexe-exited-with-code--529706956\/10897023\">[std:c++20] &#8220;CL.exe&#8221; exited with code -529706956.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/regression-rejects-valid-operator-call\/11036927\">[std:c++20] [Regression] rejects valid operator call<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/alias-template-deduction-guide-doesnt-w\/10420313\">[std:c++20] alias template deduction guide doesn&#8217;t work in c++20<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/An-inline-friend-function-template-canno\/10995741\">[std:c++20] An inline friend function template cannot access the template arguments of the class template (C2065)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Binary-left-fold-expression-in-return-ty\/10961793\">[std:c++20] Binary left fold expression in return type leads to compilation error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-explicit-variable-template-instantia\/10933044\">[std:c++20] C++ explicit variable template instantiation causes internal compiler error when using precompiled header<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CCLI---inline-namespace-does-not-work\/10978397\">[std:c++20] C++\/CLI &#8211; inline namespace does not work<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CCLI:-::typeid-cannot-be-used-on-buil\/10757262\">[std:c++20] C++\/CLI: ::typeid cannot be used on builtin types<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C20-requires-requires-clause-with-non-\/11048532\">[std:c++20] C++20 requires requires clause with non-type template parameter inconsistently generates strange compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C20:-consteval-fails-to-compile\/10251516\">[std:c++20] C++20: consteval fails to compile<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C7602-false-positive-constant-template-\/10985136\">[std:c++20] C7602 false positive, constant template parameter constraint bug<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Heap-allocations-via-new-keyword-cannot-\/11008216\">[std:c++20] Can&#8217;t allocate heap memory at compile time<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Cannot-forward-declare-class-in-internal\/10901595\">[std:c++20] Cannot forward declare class in internal module partition (C++20)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Cannot-pass-one-consteval-function-as-an\/10740578\">[std:c++20] Cannot pass one consteval function as an argument to another consteval function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Cannot-use-a-pointer-on-immediate-functi\/10966041\">[std:c++20] Cannot use a pointer on immediate function within constant expression<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Class-template-argument-deduction-for-al\/10621836\">[std:c++20] Class template argument deduction for alias template fails<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Compiler-generated-code-for-certain-C-\/10922624\">[std:c++20] Compiler-generated code for certain C++ coroutines give unexpected warnings and refer to negative line numbers<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/constant-expression-is-not-considered-co\/10746207\">[std:c++20] constant expression is not considered constant in immediate function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Consteval-code-does-not-compile-in-MSVC\/10754008\">[std:c++20] Consteval code does not compile in MSVC<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Error-C2100-is-incorrect-for-non-generic\/10879645\">[std:c++20] Error C2100 is incorrect for non-generic lambda expressions<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Error-C2514:-class-template-cannot-be-co\/10958326\">[std:c++20] Error C2514: class template cannot be constructed<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/error-C7535-due-to-rvalue-reference-when\/10999145\">[std:c++20] error C7535 due to rvalue reference when a constructor delegates to another constructor<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ICE-when-indexing-into-an-NTTP-multidime\/10977233\">[std:c++20] ICE when indexing into an NTTP multidimensional c-array on MSVC 14.44.35207<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/If-constexpr-and-require-do-not-check-fo\/10991368\">[std:c++20] If constexpr and require do not check for the existence of members correctly<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Including-a-header-with-pragma-system_h\/10968424\">[std:c++20] Including a header with #pragma system_header from an external include directory treats the whole translation unit as an external header<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-ICE-on-manipul\/11038832\">[std:c++20] Internal compiler error (ICE) on manipulating with pointer to immediate function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-when-specializin\/11001526\">[std:c++20] Internal Compiler Error when specializing on floats<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Making-a-call-on-consteval-lambdas-retu\/11005225\">[std:c++20] Making a call on consteval lambda&#8217;s returned function leads to error C7595<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-fails-to-compile-C20-template-lam\/10898385\">[std:c++20] MSVC fails to compile C++20 template lambda with consteval specifier<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-ICE-when-using-templated-auto-param\/10944095\">[std:c++20] MSVC incorrectly deduplicates two different member pointers (&amp;Case01::a, &amp;Case02::num) passed as auto non-type template parameters<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-rejects-valid-program-involving-inh\/11040924\">[std:c++20] MSVC rejects valid program involving inheriting conversion function from a closure type with no capture<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/No-warning-C4706-for-assignment-to-std::\/10937044\">[std:c++20] No warning C4706 for assignment to std::unqiue_ptr used as a condition<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Removal-of-placemarker-tokens-incorrectl\/10961811\">[std:c++20] Removal of placemarker tokens incorrectly removes surrounding whitespace with \/Zc:preprocessor<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/requires-requires-constraint-on-a-member\/11007298\">[std:c++20] requires requires constraint on a member function treats a base call like a static call<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Runtime-stack-corruption-reported-with-s\/10990519\">[std:c++20] Runtime stack corruption reported with std::visit<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/source_location-returns-wrong-value\/10841775\">[std:c++20] source_location() returns wrong value.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/std::is_constructible-gives-incorrect-an\/10955528\">[std:c++20] std::is_constructible gives incorrect answer for arrays in C++20<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/std::source_information::current-outpu\/10461523\">[std:c++20] std::source_information::current() outputs different location in consteval context<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/std::source_location::currentfunction\/10671102\">[std:c++20] std::source_location::current().function_name() produces empty string when used as default argument value<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Unable-to-call-a-consteval-function-from\/10567445\">[std:c++20] Unable to call a consteval function from another one<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Using-a-dependent-qualified-name-as-a-de\/10984791\">[std:c++20] Using a dependent qualified name as a default argument for a constraint template type parameter breaks the MSVC compiler<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/When-_ASSERTE-is-given-an-expression-wit\/10713398\">[std:c++20] When _ASSERTE is given an expression with &#8216;\\&#8221;&#8216;, it results in internal compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Wrong-error-C3640-in-getting-a-pointer-o\/10992438\">[std:c++20] Wrong error C3640 in getting a pointer on a pure virtual function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Wrong-overload-called-due-to-rvalue-refe\/10999638\">[std:c++20] Wrong overload called due to rvalue reference leading to a recursion<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Deduction-of-class-template-arguments-pi\/10939918\">[std:c++20][Neg] Deduction of class template arguments picks up wrong constructor<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Regression-array-access-on-result-on-te\/10968165\">[std:c++20][Neg][Regression] Regression, array access on result on ternary incorrectly returns a prvalue<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-20-modules-C1001:-Internal-compiler-\/10985074\">[std:c++20][Regression] C++ 20 modules C1001: Internal compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C:-Array-reference-is-incorrectly-calc\/10972001\">[std:c++20][Regression] C++: Array reference is incorrectly calculated leading to access violation or wrong memory address being accessed<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Cannot-partially-specialize-template-acr\/10969873\">[std:c++20][Regression] Cannot partially specialize template across C++20 module<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Failed-to-specialize-function-template-f\/10973782\">[std:c++20][Regression] Failed to specialize function template for abstract type after SFINAE call on type<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-Found-in-MSVC-14\/10914206\">[std:c++20][Regression] Internal Compiler Error Found in MSVC 14.44.35207<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-when-using-\/11035356\">[std:c++20][Regression] Internal compiler error when when using a bad return type in a template user defined conversion function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-while-compiling-\/11005190\">[std:c++20][Regression] Internal Compiler Error while compiling C++20 coroutine code<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Invalid-Operation:-FP-optimization-bug\/10925435\">[std:c++20][Regression] Invalid Operation: FP optimization bug<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Spurious-C2102-error-initializing-static\/10958303\">[std:c++20][Regression] Spurious C2102 error initializing static inline constexpr member with partial designated initializer list<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/STL-hardening-checks-_MSVC_STL_HARDENIN\/11048180\">[std:c++20][Regression] STL hardening checks (_MSVC_STL_HARDENING) are not optimised away (2)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/template-function-specialization-and-dec\/10995308\">[std:c++20][regression] template function specialization and decltype compiler discrepancies<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VS-1712-regression-ICE-with-structured\/10949133\">[std:c++20][Regression] VS 17.12 regression, ICE with structured bindings and lambda in constexpr variable template instantiation<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/When-a-throwing-expression-appears-somew\/10922853\">[std:c++20][Regression] When a throwing expression appears somewhere in a lambda capture list, <code>noexcept(&lt;lambda expression&gt;)<\/code> gives incorrect result<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VS2026-regression:-lambda-cannot-access-\/10999017\">[std:c++20][Regression]VS2026 regression: lambda cannot access local constant<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Spurious-compiler-error-C2872-when-build\/10968922\">[std:c++23preview][std:c++latest][Regression] Spurious compiler error C2872 when building with C++23preview<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CCLI--C23---multidimensional-manag\/10978377\">[std:c++23preview]C++\/CLI &amp; C++23 &#8211; multidimensional managed arrays don&#8217;t work<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/pragma-warningdisable-not-working-in-\/10937100\">[std:c++latest] #pragma warning(disable) not working in nested headers used with header units<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Anonymous-unions-in-unnamed-namespaces-a\/10957157\">[std:c++latest] Anonymous unions in unnamed namespaces are incorrectly required to use static<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Buggy-__declspecselectany-constant-ini\/11029304\">[std:c++latest] Buggy __declspec(selectany) constant initialisation across C++ modules<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-modules-compile-error-when-using-a-u\/10981263\">[std:c++latest] C++ modules compile error when using a using declaration from a different module<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C2355-is-wrongly-triggered-when-local-cl\/10936151\">[std:c++latest] C2355 is wrongly triggered when local class is defined in a static member function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C4389-is-triggered-when-comparing-a-bitf\/11063120\">[std:c++latest] C4389 is triggered when comparing a bitfield member of one bit with a bool<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Can-not-initialize-array-with-consteval-\/10828473\">[std:c++latest] Can not initialize array with consteval constructed elements<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Compiler-crashes-with-C1001-error-when-u\/11054103\">[std:c++latest] Compiler crashes with C1001 error when using CTAD in a nested type with template dependent noexcept<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Compiler-error-with-constexpr-user-defin\/11060454\">[std:c++latest] Compiler error with constexpr user-defined literals in a requires expression<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CTAD-with-designated-initializer-doesnt\/11040709\">[std:c++latest] CTAD with designated initializer doesn&#8217;t compile<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Deleted-function-disables-ADL-in-immedia\/10943110\">[std:c++latest] Deleted function disables ADL in immediate context<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Enum-names-publicly-imported-into-class-\/11053446\">[std:c++latest] Enum names publicly imported into class declaration with using-enum-declaration (using enum) are lost across module boundaries<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/error-C3535:-you-cant-deduce-the-type-f\/1146001\">[std:c++latest] error C3535: you can&#8217;t deduce the type for &#8220;auto&#8221; from &#8220;overloaded-function&#8221;<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/error-C7595:-call-to-immediate-function-\/10651933\">[std:c++latest] error C7595: call to immediate function is not a constant expression<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Error-parsing-function-declaration-takin\/10954746\">[std:c++latest] Error parsing function declaration taking a function pointer and having an empty init list as a default argument<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Extra-blank-line-output-with-E-and-war\/10966169\">[std:c++latest] Extra blank line output with \/E and #warning<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/False-positive-warning-C4305-when-using-\/10963504\">[std:c++latest] False positive warning C4305 when using a defaulted non-type template parameter<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C7515-error-with-fold-expression-in-nest\/11024139\">[std:c++latest] Fold expression fails to expand full pack in nested template after C7515 fix<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Function-Specialisation-and-Concepts-Cau\/10815635\">[std:c++latest] Function Specialisation and Concepts Causes an Ambiguous Call to Overloaded Function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ICE-using-BoostPFR-with-C-modules-vs\/10851525\">[std:c++latest] ICE using Boost.PFR with C++ modules (vs-17.14.0-preview1)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ICE-while-compiling-mp-units\/10969996\">[std:c++latest] ICE while compiling mp-units<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ICE-with-modules-and-if-consteval\/10919833\">[std:c++latest] ICE with modules and if consteval<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ICE-with-template-deduction-guide\/10683535\">[std:c++latest] ICE with template deduction guide<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ICE:-writercpp:542-the-impossible-happe\/10951640\">[std:c++latest] ICE: writer.cpp:542 the impossible happened when using folly + modules<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/identifier-not-found-in-nested-fold-expr\/10948595\">[std:c++latest] identifier not found in nested fold expression<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/In-msvc-V145-the-BUG-triggered-when-usi\/10981118\">[std:c++latest] In msvc V145, the BUG triggered when using intra-class members in constraints in templates within classes<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Interaction-between-no_unique_address-an\/11045539\">[std:c++latest] Interaction between no_unique_address and has_unique_object_representations is incorrect<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-linking-c\/10962186\">[std:c++latest] Internal compiler error when linking c++20 module<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-using-C-m\/10981167\">[std:c++latest] Internal compiler error when using C++ modules<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-compiler-file-\/10998195\">[std:c++latest] Internal compiler error. (compiler file &#8216;D:\\a_work\\1\\s\\src\\vctools\\Compiler\\CxxFE\\sl\\p1\\c\\trees.c&#8217;, line 19104)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Mixins-pack-fold-expressions-error\/10979917\">[std:c++latest] Mixins pack fold expressions error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-:-Nested-struct-depending-on-outer-\/11028274\">[std:c++latest] MSVC : Nested struct depending on outer class template parameters fails as NTTP within the class scope (C2993)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-fails-to-compile-working-code-inv\/10952639\">[std:c++latest] MSVC fails to compile (working) code involving template metaprogramming<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Nested-lambdas-errors-out-in-msvc-with-l\/10981163\">[std:c++latest] Nested lambdas errors out in msvc with labeled structured binding<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Note-that-follows-warning-C4477-is-inacc\/11034341\">[std:c++latest] Note that follows warning C4477 is inaccurate for size_t, redux<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Overload-resolution-fails-for-enum-non-t\/10398088\">[std:c++latest] Overload resolution fails for enum non-type template parameters<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Parameter-pack-with-reference-to-C-array\/10925462\">[std:c++latest] Parameter pack with reference to C array issue<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Unable-to-deduce-argument-type-to-std::o\/10898601\">[std:c++latest] Unable to deduce argument type to std::optional<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Unions-are-not-layout-compatible-despite\/11046273\">[std:c++latest] Unions are not layout-compatible despite containing layout-compatible data members<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Universal-CLexe-Crash-Exit-Code--10737\/10989248\">[std:c++latest] Universal CL.exe Crash (Exit Code -1073741819) with Nested std::filesystem::path in C++17+<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/The-destructor-is-private-but-compiler-\/11000245\">[std:c++latest][Neg] The destructor is private, but compiler allows create an object on stack.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Apparent-C-parser-bug---emits-C2143--\/11034196\">[std:c++latest][regression] Apparent C++ parser bug &#8211; emits C2143 + C2451 (+ optional C2530 + C3531) if range-for expression inside a template function contains a lambda<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C3520-when-expanding-template-parameter-\/11028433\">[std:c++latest][Regression] C3520 when expanding template parameter pack in a member function template of a class template<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Cant-use-templated-alias-instance-if-th\/11046970\">[std:c++latest][Regression] Can&#8217;t use templated alias instance if the parser first sees the instantiation of the alias in a template class<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-in-latest-versio\/11047635\">[std:c++latest][Regression] Internal Compiler Error in latest versions of MSVC when compiling specific fold expression<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-involving-member\/10924492\">[std:c++latest][regression] Internal compiler error involving member function pointer, multiple inheritance and constexpr passthrough function.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-with-Lambda-and-\/11027806\">[std:c++latest][Regression] Internal Compiler Error with Lambda and Constexpr Reference in Visual Studio 2026 ( CL.exe Version 19.50.35722 for x64 )<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Lambda-cannot-access-local-constant\/11057797\">[std:c++latest][Regression] Lambda cannot access local constant<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-145035503-Internal-Compiler-Error\/10963715\">[std:c++latest][regression] MSVC 14.50.35503 Internal Compiler Error [Visual Studio 2026 Insiders]<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Overload-resolution-failing-with-a-class\/10977207\">[std:c++latest][Regression] Overload resolution failing with a class template specialization<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Regression-Compile-Error-when-using-mo\/10995514\">[std:c++latest][Regression] Regression (Compile Error) when using modules and fmtlib<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-result-when-struct-contains-a-\/11026048\">[std:c++latest][Regression]Incorrect result when struct contains a [[no_unique_address]] member<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Using-an-initializer-list-as-a-template-\/10994813\">[std:c++latest][regression]Using an initializer list as a template argument when an incompatible overload exists results in error C2440<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Warning-C4864-incorrectly-raised-when-ca\/11011319\">[std:c++latest][Regression]Warning C4864 incorrectly raised when calling overridden non-template member functions of the template base class<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-IntelliSense-and-the-compiler-compla\/10990577\">[std:c++latest]C++ IntelliSense and the compiler complain about the wrong variable being const<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Ternary-operator-does-not-propagate-temp\/11002478\">[std:c++latest]Ternary operator does not propagate temporary operand to the resulting rvalue reference.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Using-an-elaborated-type-specifier-to-re\/10994084\">[std:c++latest]Using an elaborated-type-specifier to refer to an enum whose underlying type is not int results in errors C3432 and C3433<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-incorrectly-warns-that-C99-flexible\/10675271\">[std:c11] MSVC incorrectly warns that C99 flexible array members are a nonstandard extension (zero-sized arrays)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ARM64-EHa-incorrect-code-motion\/10957973\">ARM64 \/EHa incorrect code motion<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ARM64-issue-with-static-initializers-and\/10967094\">ARM64 issue with static initializers and destructors and \/OPT:ICF<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ARM64EC:-Crash-when-calling-C-function\/10965678\">ARM64EC: Crash when calling C++ function in DLL containing OpenMP pragmas, from C# app through DllImport<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/arm64x-forwarding-dll-does-not-support-D\/10954319\">arm64x forwarding dll does not support DATA<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/ASAN_VCASAN_DEBUGGING-is-broken-in-1714\/10914118\">ASAN_VCASAN_DEBUGGING is broken in 17.14.3 Preview 1.0<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Bitfields-with-a-bool-type-at-the-beginn\/10505069\">Bitfields with a bool type at the beginning are broken in C mode<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-Compiler-crash-with-fabsf-in-loop-wi\/11036207\">C++ Compiler crash with fabsf in loop with optimization (\/O2 \/Ob \/Ot) and \/fp:precise<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-constexpr-pointer-subtruction-incorr\/10086459\">C++ constexpr pointer subtruction incorrect result<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C-Dynamic-Debugging-Null-String-Litera\/10898757\">C++ Dynamic Debugging Null String Literals<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CCLI-C2668-Ambiguous-Call-in-NET-9-a\/10955103\">C++\/CLI C2668 Ambiguous Call in .NET 9 and later<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CCLI-rethrowing-NET-exception-crashes\/804695\">C++\/CLI rethrowing .NET exception crashes with .NET Framework 4.8 in x64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C1001:-Internal-compiler-error-with-64-b\/10918408\">C1001: Internal compiler error with 64-bit optimized builds of recent VIM using VS 17.14<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C1090:-PDB-API-call-failed-error-code-\/1670516\">C1090: PDB API call failed, error code &#8216;3&#8217;<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C2034-about-overwide-bit-fields-should\/11059160\">C2034 (about overwide bit-fields) shouldn&#8217;t be an error in C++ modes<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C4319-not-emitted-when-compiling-C-code\/10978009\">C4319 not emitted when compiling C code<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/C4756-related-issues-in-VS-2022\/10697767\">C4756 related issues in VS 2022<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/colocated-localsparameters-with-overlap\/10744681\">colocated locals\/parameters with overlapping lifetime 14.40.33814 and newer<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/CTime-throws-error-in-timezones-behind-G\/10662787\">CTime throws error in timezones behind GMT. Changes in VS 15.8 produced a regression<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/content\/problem\/270700\/ctimectime-fails-with-year-1900.html\">CTime::CTime fails with year 1900<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Dangling-pointer-in-cpp-file-atlmfc-Visu\/11037094\">Dangling pointer in cpp file atlmfc Visual Studio occsite.cpp<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Default-member-initializers-for-bit-fiel\/10030064\">Default member initializers for bit-fields doesn&#8217;t work when importing struct (or class) from a module<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Erroneous-warning-C5061:-the-use-of-a-co\/10962933\">Erroneous warning C5061: the use of a comma operator as a subscript expression has been deprecated<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/EXE-compiled-with-ASAN-and-ASAN-libs-an\/10746523\">EXE compiled with ASAN (and ASAN libs and DLLs sometimes hangs during exit<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Failure-to-optimize-redundant-DUP-SMOV-\/11006415\">Failure to optimize redundant DUP, SMOV sequence (ARM64)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Fatal-error-C1001:-Internal-compiler-err\/10990587\">Fatal error C1001: Internal compiler error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/GC-collects-during-method-call-on-ccli\/1212945\">GC collects during method call on c++\/cli ref class<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Guarded_by_-on-a-static-local-variable-r\/11015376\">Guarded<em>by<\/em> on a static local variable reports an annotation syntax error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Illegal-code-is-accepted-due-to-rvalue-r\/10999642\">Illegal code is accepted due to rvalue reference leading to a recursion<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Improper-concatenation-of-Unicode-string\/896326\">Improper concatenation of Unicode string literals<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-Code-writing-bitfield\/10807743\">Incorrect Code writing bitfield<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-initialization-of-nested-aggre\/10574742\">Incorrect initialization of nested aggregate member with unrelated member&#8217;s value<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-instructions-generated-in-AVX2\/10973844\">Incorrect instructions generated in AVX2<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-switch-case-generation-on-arm6\/11005901\">Incorrect switch-case generation on arm64 target<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Incorrect-template-argument-deduction-fo\/11054088\">Incorrect template argument deduction for function called with argument this from out-of-line, ref qualified member function.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-for-ternary-expr\/10990478\">Internal compiler error for ternary expression with non copyable type and throw<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/internal-compiler-error-in-msvc-145035\/10991804\">internal compiler error in msvc 14.50.35717<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-in-type_traits-a\/1654912\">Internal compiler error in type_traits and operator bool in derived class<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-targeting-ARM64-\/10962922\">Internal Compiler Error targeting ARM64 with VS 2026 18.0 Insiders<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-enabling-Co\/11034197\">Internal compiler error when enabling Code Analysis (\/analyze) with variadic templates + SAL<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-compiler-error-when-using-OpenM\/729125\">Internal compiler error when using OpenMP and try\/catch in same function with \/clr enabled<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-with-CC-Optim\/11000234\">Internal Compiler Error with C\/C++ Optimizing Compiler Version 19.50.35710 for ARM64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-with-CC-Optim\/11034264\">Internal Compiler Error with C\/C++ Optimizing Compiler Version 19.50.35722 for ARM64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Internal-Compiler-Error-with-C-templat\/10966832\">Internal Compiler Error with C++ template template parameters and missing template keyword<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/KASAN-drivers-fail-to-link-referencing-w\/10786900\">KASAN drivers fail to link referencing wide string functions (wcscat, wcscpy, wcsncpy)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Keywords-can-not-be-translated-in-errors\/10979808\">Keywords MUST NOT be translated in errors, warnings or suggestions.<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/lambda-nested-decltype-of-lambda-trigger\/10182259\">lambda-nested decltype of lambda triggers C2011<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Linker-shouldnt-warn-for-differing-Arm6\/10950959\">Linker shouldn&#8217;t warn for differing Arm64EC &#8220;icall push thunks&#8221; that are equivalent<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Long-octal-formatted-strings-DoS-the-use\/11021201\">Long octal formatted strings DoS the user&#8217;s machine and cause C1060<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MFC-static-lib-reports-memory-leak\/10342086\">MFC static lib reports memory leak<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MicrosoftVCToolsVersionv143defaulttx\/10041951\">Microsoft.VCToolsVersion.v143.default.txt in 17.2 is not updated from 17.1<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Miscompilation-of-svset_neonq-arm_ne\/11034791\">Miscompilation of <code>svset_neonq<\/code> (arm_neon_sve_bridge.h) with 19.50.35722 for ARM64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Miscompilation-of-AArch64-SVE-loop-Vers\/11037473\">Miscompilation of AArch64 SVE loop (Version 19.50.35722 for ARM64)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Missing-destructor-call-when-Zc:nrvo-is\/10851258\">Missing destructor call when \/Zc:nrvo is enabled (\/O2 and \/std:c++20)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Misuse-of-_BitScanForward-result-can-cra\/1402944\">Misuse of _BitScanForward result can crash the compiler<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Modules:-using-declarations-leak-from-ex\/10969907\">Modules: using-declarations leak from exported functions<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSDIS-is-incorrectly-decoding-some-xchg-\/10573512\">MSDIS is incorrectly decoding some xchg instructions as nop<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-fails-to-bind-a-noexcept-function-t\/1084579\">MSVC fails to bind a noexcept function to template instantiated with a noexcept signature<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-fails-to-generate-INCP-and-friends\/11037527\">MSVC fails to generate INCP (and friends) &#8211; Version 19.50.35722 for ARM64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-fails-to-generate-MLAMAD-Version-\/11037542\">MSVC fails to generate MLA\/MAD (Version 19.50.35722 for ARM64)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-fails-to-optimize-LASTA-idiom-Vers\/11037543\">MSVC fails to optimize LASTA idiom (Version 19.50.35722 for ARM64)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-generates-an-incorrect-warning\/11016074\">MSVC generates an incorrect C6001 warning<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/MSVC-x64:-_mm_shuffle_ps-incorrectly-opt\/11000209\">MSVC x64: _mm_shuffle_ps incorrectly optimized away after vcvtpd2ps at \/O1 or \/O2<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/New-C-Dynamic-Debugging-feature-occasi\/10960327\">New C++ Dynamic Debugging feature occasionally causes link error 1136<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/noexcept-deduction-is-not-working\/10332841\">noexcept deduction is not working (CWG 2355)<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Not-implemented-mandatory-copy-elision-i\/1476673\">Not implemented mandatory copy elision in ternary operator<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Observing-non-deterministic-output-when-\/10440164\">Observing non-deterministic output when building UCRT for CHPE builds<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Optimisation-is-missed-during-UB-safe-ne\/10664579\">Optimisation is missed during UB-safe negation<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Performance-regression-on-hash-calculati\/10942320\">Performance regression on hash calculation with custom hash function when switching to msvc 17.14.7<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/PGO-instrumentation-runtime-crash-on-ARM\/10949293\">PGO instrumentation runtime crash on ARM64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Placement-operator-new-in-vcruntimeh\/10798069\">Placement operator new[] in should be marked _MSVC_CONSTEXPR<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Poor-x64-code-generation-for-range-for-l\/10955651\">Poor x64 code generation for range for loop on member array<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Raw-string-literals-have-a-limit-of-163\/10144691\">Raw string literals have a limit of ~16380 characters<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/SAL2-analyzer-fails-to-handle-shared_loc\/10749126\">SAL2 analyzer fails to handle shared_locks for _Guarded<em>by<\/em> annotation<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Sanitizer-Coverage-Blocklist-Broken\/10959808\">Sanitizer Coverage Blocklist Broken<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Sanitizer-Coverage-Produces-Bad-Codegen-\/10989121\">Sanitizer Coverage Produces Bad Codegen for C++ binaries<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/SIMD-Code-optimization-bug\/10945478\">SIMD Code optimization bug<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/specialization-of-static-template-functi\/1615747\">specialization of static template function requires static to be specified; clang warns it should not<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Compiler-optimization-bug-in-VS-2022\/10512534\">SSA CSE conflates different pointers<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Standard-Library-Modules:-Random-number-\/10729775\">Standard Library Modules: Random number machinery emits bogus error C2512<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Static-local-thread-epoch-has-incorrect-\/11048429\">Static local thread epoch has incorrect TLS offset when using \/dynamicdeopt, resulting in crash<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/std:c17-and-unsized-arrays--LOVE\/10483528\">std:c17 and unsized arrays != LOVE<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/string-literal-concatenation-with-differ\/801833\">string literal concatenation with different encoding prefixes fails<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/template-function-not-found\/10958126\">template function not found<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Ternary-operator-unnecessarily-requires-\/10823013\">Ternary operator unnecessarily requires copy constructor<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Unexpected-error-C7595-reported\/10188419\">Unexpected error C7595 reported<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Unexpected-result-while-compiling-conste\/10787332\">Unexpected result while compiling consteval function<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Unused-compile-time-constant-in-x64-rele\/10827098\">Unused compile-time constant in x64 release build causes access violation in compiler during linking stage<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Using-1714-toolset-one-of-our-projects-\/10914559\">Using 17.14 toolset one of our projects generates a LNK1120 link error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VC-176-preview-1-ARM64EC-compiler-ICE\/10291481\">VC++ 17.6 preview 1 ARM64EC compiler ICEs when it encounters __vectorcall keyword<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VisualCppTools-45035724-PdbCopyExe-A\/11048289\">VisualCppTools.14.50.35724 PdbCopy.Exe Arm64 Pdb Copy Crashes<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Volatile-local-variable-is-assumed-to-no\/10719533\">Volatile local variable is assumed to not change on x64<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/content\/problem\/430082\/volatile-variable-not-read-after-write.html\">Volatile variable not read after write<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VS-171413-Bad-codegen-for-x64-SIMD-reg\/10961829\">VS 17.14.13 Bad codegen for x64 SIMD register not set up correctly<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VS180-Insiders-MSVC-ICE-in-MFC-message-\/10963375\">VS18.0 Insiders MSVC ICE in MFC message map of a class with virtual base<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/vs2022-optimization-error\/10538100\">vs2022 optimization error<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/VS2026-MSVC-Warning-C4865-lies-about-und\/10966873\">VS2026 MSVC Warning C4865 lies about underlying type change with \/Zc:enumTypes<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/Windows-SDK-is-missing-include-utility\/10968495\">Windows SDK is missing #include <code>&lt;utility&gt;<\/code> in atlcom.h<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/x64-compiler-crash-while-compiling-Mesa-\/10957071\">x64 compiler crash while compiling Mesa source file with optimizations<\/a><\/li>\n<li><a href=\"https:\/\/developercommunity.visualstudio.com\/t\/x64-Emulator-crash-when-an-ARM64EC-threa\/10988987\">x64 Emulator crash when an ARM64EC thread calls an x64 coroutine that calls another ARM64EC coroutine<\/a><\/li>\n<\/ul>\n<h2>Try Out the MSVC Release Candidate!<\/h2>\n<p>Please try out the RC and let us know what you think! Installation instructions:<\/p>\n<ol>\n<li><a href=\"https:\/\/visualstudio.microsoft.com\/insiders\">Download Visual Studio 2026 Insiders<\/a><\/li>\n<li>Install the Desktop development with C++ workload and make sure one or both of these MSVC components are checked (depending on your target build architecture):\n<ul>\n<li>MSVC Build Tools for x64\/x86 (Latest)<\/li>\n<li>MSVC Build Tools for ARM64\/ARM64EC (Latest)<\/li>\n<\/ul>\n<\/li>\n<li>Share your feedback with us on <a href=\"https:\/\/developercommunity.visualstudio.com\/index.html\">Visual Studio Developer Community<\/a>.<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Try out the final preview of MSVC Build Tools v14.51<\/p>\n","protected":false},"author":1711,"featured_media":36426,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1,3963],"tags":[282],"class_list":["post-36425","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cplusplus","category-msvc","tag-msvc"],"acf":[],"blog_post_summary":"<p>Try out the final preview of MSVC Build Tools v14.51<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/posts\/36425","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/users\/1711"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/comments?post=36425"}],"version-history":[{"count":2,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/posts\/36425\/revisions"}],"predecessor-version":[{"id":36432,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/posts\/36425\/revisions\/36432"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/media\/36426"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/media?parent=36425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/categories?post=36425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/cppblog\/wp-json\/wp\/v2\/tags?post=36425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}