mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 17:26:06 +00:00

The previous assertion was relatively easy to trigger, and likely will be easy to trigger going forward. EmitDelegateCallArg is relatively popular. This cleanly diagnoses PR28299 while I work on a proper solution. llvm-svn: 348991
12 lines
285 B
C++
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) {}; }
|
|
|