mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-23 07:52:06 +00:00
76ea19641e
llvm-svn: 293223
12 lines
253 B
C++
12 lines
253 B
C++
// 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;
|