blob: d23ff47634ee1bc7474a07689984acc88ebcedb6 [file] [log] [blame]
Richard Trieu4eefb452018-01-12 04:42:27 +00001// RUN: rm -rf %t
2
3// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t/modules.cache \
4// RUN: -I %S/Inputs/odr_hash-Friend \
5// RUN: -emit-obj -o /dev/null \
6// RUN: -fmodules \
7// RUN: -fimplicit-module-maps \
8// RUN: -fmodules-cache-path=%t/modules.cache \
9// RUN: -std=c++11 -x c++ %s -verify
10
Richard Trieu526fb052018-01-12 21:49:20 +000011// UNSUPPORTED: windows
12
Richard Trieu4eefb452018-01-12 04:42:27 +000013// expected-no-diagnostics
14
15#include "Box.h"
16#include "M1.h"
17#include "M3.h"
18
19void Run() {
20 Box<> Present;
21}