1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 %t/M.cppm -emit-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 %t/M.cppm -emit-reduced-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 %t/M0.cppm -emit-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t -DMODULE_LOCAL
// RUN: %clang_cc1 -std=c++20 %t/M0.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 %t/M0.cppm -emit-reduced-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t -DMODULE_LOCAL
// RUN: %clang_cc1 -std=c++20 %t/M0.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 %t/M2.cppm -emit-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 %t/M2.cppm -emit-reduced-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 %t/M3.cppm -emit-reduced-module-interface -o %t/M.pcm
// RUN: %clang_cc1 -std=c++20 %t/use2.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
//--- enum.h
enum { SomeName, };
//--- M.cppm
module;
#include "enum.h"
export module M;
export auto e = SomeName;
//--- M0.cppm
export module M;
enum { SomeName, };
export auto e = SomeName;
//--- M0.cpp
// expected-no-diagnostics
module M;
auto a = SomeName;
//--- use.cpp
import M;
auto a = SomeName; // expected-error {{use of undeclared identifier 'SomeName'}}
auto b = decltype(e)::SomeName;
//--- enum1.h
extern "C++" {
enum { SomeName, };
}
//--- M2.cppm
module;
#include "enum1.h"
export module M;
export auto e = SomeName;
//--- enums.h
namespace nn {
enum E { Value };
enum E2 { VisibleEnum };
enum AlwaysVisibleEnums { UnconditionallyVisible };
}
//--- M3.cppm
module;
#include "enums.h"
export module M;
export namespace nn {
using nn::E2::VisibleEnum;
using nn::AlwaysVisibleEnums;
}
auto e1 = nn::Value;
auto e2 = nn::VisibleEnum;
//--- use2.cpp
import M;
auto e = nn::Value1; // expected-error {{no member named 'Value1' in namespace 'nn'}}
auto e2 = nn::VisibleEnum;
auto e3 = nn::UnconditionallyVisible;
|