llvm-project
8 строк · 236.0 Байт
1// RUN: not %clang_cc1 -emit-pch %s -o %t.pch 2>&1 | FileCheck %s
2
3struct S {4// Make sure TypoExprs in default init exprs are corrected before serializing5// in PCH.6int y = bar;7// CHECK: use of undeclared identifier 'bar'8};9