// RUN: %clang_cc1 -std=c++20 -fms-compatibility -fms-compatibility-version=19.33 -emit-llvm %s -o - -triple=x86_64-windows-msvc | FileCheck %s template concept C = requires { { T::test([](){}) }; }; template struct Widget {}; template struct Widget {}; struct Baz { template static constexpr decltype(auto) test(F&&) {} }; void test() { Widget w; } // CHECK: @"?test@@YAXXZ"