blob: c28603940046907284125693cf00bd1a763c69d0 [file] [log] [blame]
// RUN: not %clang_cc1 -emit-pch %s -o %t.pch 2>&1 | FileCheck %s
struct S {
// Make sure TypoExprs in default init exprs are corrected before serializing
// in PCH.
int y = bar;
// CHECK: use of undeclared identifier 'bar'
};