opnsense-src/test/PCH/cxx-method.cpp

8 lines
92 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-pch %s -o %t
2009-10-14 14:03:49 -04:00
struct S {
void m(int x);
};
void S::m(int x) { }