summaryrefslogtreecommitdiffstats
path: root/test/PCH/typo2.cpp
blob: 9aa97bdfb177c55b8019679d26ce3bd1d2c9cff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -emit-pch %s -o %t.pch
// RUN: %clang_cc1 -include-pch %t.pch %s -verify

#ifndef HEADER_INCLUDED
#define HEADER_INCLUDED

void func(struct Test);

#else

::Yest *T;  // expected-error{{did you mean 'Test'}}
            // expected-note@7{{'Test' declared here}}

#endif