In the latest episode of "Deserializing bugs caused by accessors" the series reached...
[clang.git] / test / PCH / cxx-method.cpp
blob37dabcc466a8b65ee93ba96b129ee5d28449cff2
1 // RUN: %clang_cc1 -emit-pch %s -o %t
3 struct S {
4 void m(int x);
5 };
7 void S::m(int x) { }