Files
clang-p2996/clang/test/CodeGenCXX/inalloca-lambda.cpp
Amy Huang 8ed7aa59f4 Revert "Try to implement lambdas with inalloca parameters by forwarding without use of inallocas."
Causes a clang crash (see crbug.com/1457256).

This reverts commit 015049338d.
2023-06-22 11:42:33 -07:00

12 lines
285 B
C++

// RUN: not %clang_cc1 -triple i686-windows-msvc -emit-llvm -o /dev/null %s 2>&1 | FileCheck %s
// PR28299
// CHECK: error: cannot compile this forwarded non-trivially copyable parameter yet
class A {
A(const A &);
};
typedef void (*fptr_t)(A);
fptr_t fn1() { return [](A) {}; }