blob: 81dd193b93e8816bb9f70183d66559841dc12f4f [file] [log] [blame]
Jan Korouse81f9cd2020-07-09 12:06:01 -07001// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fsyntax-only %s
2
3struct Bar {int a;};
4const Bar arr[2] = {{1}};
5
6struct Foo {};
7
8const int b = 2;
9
10void foo(int a) {
11 Foo *foo_array;
12 foo_array = new Foo[arr[0].a];
13}