Sign in
llvm
/
clang
/
1571f048734190c5ed03d1a6083e579ec7b5801f
/
.
/
test
/
PCH
/
cxx-method.cpp
blob: 37dabcc466a8b65ee93ba96b129ee5d28449cff2 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-pch %s -o %t
struct
S
{
void
m
(
int
x
);
};
void
S
::
m
(
int
x
)
{
}