llvm/clang/test/AST/regression-new-expr-crash.cpp
2020-07-16 12:07:18 -07:00

19 lines
356 B
C++

// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsyntax-only -verify %s
struct Bar {int a;};
const Bar arr[2] = {{1}};
struct Foo {};
const int b = 2;
void foo(int a) {
Foo *foo_array;
foo_array = new Foo[arr[0].a];
}
void Test(int N) {
int arr[N];
decltype([&arr]{}) *p; // expected-error {{lambda expression in an unevaluated operand}}
}