2015-07-08 10:22:15 +08:00
|
|
|
// RUN: rm -rf %t
|
2016-08-24 03:41:39 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fno-modules-error-recovery -std=c++14 \
|
2015-07-08 10:22:15 +08:00
|
|
|
// RUN: -fmodule-name=X -emit-module %S/Inputs/merge-template-pattern-visibility/module.modulemap -x c++ \
|
2016-08-24 03:41:39 +08:00
|
|
|
// RUN: -fmodules-local-submodule-visibility -o %t/X.pcm
|
2016-09-13 05:06:40 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fno-modules-error-recovery -std=c++14 \
|
|
|
|
// RUN: -fmodule-name=Y -emit-module %S/Inputs/merge-template-pattern-visibility/module.modulemap -x c++ \
|
|
|
|
// RUN: -fmodules-local-submodule-visibility -o %t/Y.pcm
|
|
|
|
// RUN: %clang_cc1 -fmodules -fno-modules-error-recovery -std=c++14 -fmodule-file=%t/X.pcm -fmodule-file=%t/Y.pcm \
|
|
|
|
// RUN: -fmodules-local-submodule-visibility -verify %s -I%S/Inputs/merge-template-pattern-visibility
|
|
|
|
|
|
|
|
#include "b.h"
|
|
|
|
#include "d.h"
|
|
|
|
|
|
|
|
// expected-no-diagnostics
|
|
|
|
void g() {
|
|
|
|
CrossModuleMerge::B<int> bi;
|
|
|
|
CrossModuleMerge::C(0);
|
|
|
|
}
|