Sign in
cobalt
/
cobalt
/
6c8e6ca645585847723be8278a12b4ca8ab72d69
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
Modules
/
merge-function-defs.cpp
blob: 2f08f523c3aaa3987ea3b73dbb65791a2d8054e2 [
file
] [
log
] [
blame
]
// RUN: rm -rf %t
// RUN: %clang_cc1 -I%S/Inputs/merge-function-defs -fmodules -fmodule-map-file=%S/Inputs/merge-function-defs/map -fmodules-cache-path=%t %s -emit-llvm-only
#include
"b.h"
struct
X
{
virtual
void
f
();
};
inline
void
X
::
f
()
{}
X x
;