blob: 144406e7bdaf5c06b08d80edade881c88828a0b4 [file] [log] [blame]
Argyrios Kyrtzidis9bedef62009-07-14 03:18:53 +00001// RUN: clang-cc -emit-pch %s -o %t
2
3struct S {
4 void m(int x);
5};
6
7void S::m(int x) { }