merge-function-defs.cpp 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 // 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;