blob: 5aafb3150cb5dde1e54075a6281237bf07e8f75a [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 Trieu5923a6d2018-01-12 23:13:33 +000011// UNSUPPORTED: system-windows
Richard Trieu526fb052018-01-12 21:49:20 +000012
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}