2015-03-12 02:21:02 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
//
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c++ -fmodules-cache-path=%t \
|
2015-03-12 02:21:02 +08:00
|
|
|
// RUN: -emit-module -fmodule-name=a -o %t/a.pcm \
|
|
|
|
// RUN: %S/Inputs/merge-template-friend/module.modulemap
|
|
|
|
//
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c++ -fmodules-cache-path=%t \
|
2015-03-12 02:21:02 +08:00
|
|
|
// RUN: -emit-module -fmodule-name=b -o %t/b.pcm \
|
|
|
|
// RUN: %S/Inputs/merge-template-friend/module.modulemap
|
|
|
|
//
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c++ -fmodules-cache-path=%t \
|
2015-03-12 02:21:02 +08:00
|
|
|
// RUN: -I%S/Inputs/merge-template-friend \
|
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/b.pcm \
|
|
|
|
// RUN: -verify %s
|
|
|
|
|
|
|
|
#include "friend.h"
|
|
|
|
#include "def.h"
|
|
|
|
|
|
|
|
::ns::C<int> c;
|
|
|
|
|
|
|
|
// expected-no-diagnostics
|