summaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/inalloca-lambda.cpp
blob: ac85ee175268b39f0787153520c963b5e401c8be (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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) {}; }