freebsd-dev/test/PCH/cxx-method.cpp
2010-01-01 10:34:51 +00:00

8 lines
92 B
C++

// RUN: %clang_cc1 -emit-pch %s -o %t
struct S {
void m(int x);
};
void S::m(int x) { }