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