Richard Smith | 76ea196 | 2017-01-26 23:07:59 +0000 | [diff] [blame] | 1 | // 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 | |||||
6 | struct X { | ||||
7 | virtual void f(); | ||||
8 | }; | ||||
9 | inline void X::f() {} | ||||
10 | |||||
11 | X x; |