blob: 2f08f523c3aaa3987ea3b73dbb65791a2d8054e2 [file] [log] [blame]
Richard Smith76ea1962017-01-26 23:07:59 +00001// RUN: rm -rf %t
2// 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
3
4#include "b.h"
5
6struct X {
7 virtual void f();
8};
9inline void X::f() {}
10
11X x;