brintos

brintos / llvm-project-archived public Read only

0
0
Text · 253 B · 2f08f52 Raw
12 lines · cpp
1// RUN: rm -rf %t2// 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-only3 4#include "b.h"5 6struct X {7  virtual void f();8};9inline void X::f() {}10 11X x;12