blob: 39c0c4b762c21e0adb17448e253b7a758c279862 [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 Trieucc642662018-01-16 19:53:06 +000011// PR35939: MicrosoftMangle.cpp triggers an assertion failure on this test.
Richard Trieu5923a6d2018-01-12 23:13:33 +000012// UNSUPPORTED: system-windows
Richard Trieu526fb052018-01-12 21:49:20 +000013
Richard Trieu4eefb452018-01-12 04:42:27 +000014// expected-no-diagnostics
15
16#include "Box.h"
17#include "M1.h"
18#include "M3.h"
19
20void Run() {
21 Box<> Present;
22}