hanchenye-llvm-project/clang/test/PCH/cxx-method.cpp

8 lines
92 B
C++

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