You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
356 B
19 lines
356 B
// 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}}
|
|
}
|