[clang] [Clang] Handle sema of noexcept condition in their evaluation context. (PR #67538)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 27 07:44:25 PDT 2023
================
@@ -718,3 +718,8 @@ void foo() {
void GH48527() {
auto a = []()__attribute__((b(({ return 0; })))){}; // expected-warning {{unknown attribute 'b' ignored}}
}
+
+void GH67492() {
+ constexpr auto test = 42;
+ auto lambda = (test, []() noexcept(true) {});
----------------
erichkeane wrote:
Does this really attempt a capture? You have `noexcept(true)` here?
https://github.com/llvm/llvm-project/pull/67538
More information about the cfe-commits
mailing list