blob: b40460611ac397f25989642e4235cf98f3d4cb5a (
plain)
1
2
3
4
5
6
|
// RUN: not %clang_cc1 -triple x86_64-unknown-unknown -ast-dump %s | FileCheck %s
void test() {
using ContainsErrors = int[sizeof(undef())];
// CHECK: DependentSizedArrayType {{.*}} contains-errors dependent
}
|