diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-22 22:50:11 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-22 22:50:11 +0000 |
commit | e181de7f4fe9c75327836e5493c2783bcefc9293 (patch) | |
tree | 014979d3a317a1d57bcb86609e0d1f11c98ebd55 /clang/test/CXX/module/module.interface/p1.cpp | |
parent | 68602ab2f3535291753a6149d1f445c5fd416152 (diff) | |
download | bcm5719-llvm-e181de7f4fe9c75327836e5493c2783bcefc9293.tar.gz bcm5719-llvm-e181de7f4fe9c75327836e5493c2783bcefc9293.zip |
[c++2a] Implement semantic restrictions for 'export' declarations.
llvm-svn: 358932
Diffstat (limited to 'clang/test/CXX/module/module.interface/p1.cpp')
-rw-r--r-- | clang/test/CXX/module/module.interface/p1.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CXX/module/module.interface/p1.cpp b/clang/test/CXX/module/module.interface/p1.cpp index 1eba8175de4..0947b81915e 100644 --- a/clang/test/CXX/module/module.interface/p1.cpp +++ b/clang/test/CXX/module/module.interface/p1.cpp @@ -23,15 +23,15 @@ namespace N { } #ifdef ERRORS -namespace { - export int d1; // FIXME: invalid +namespace { // expected-note 2{{anonymous namespace begins here}} + export int d1; // expected-error {{export declaration appears within anonymous namespace}} namespace X { - export int d2; // FIXME: invalid + export int d2; // expected-error {{export declaration appears within anonymous namespace}} } } export export int e; // expected-error {{within another export declaration}} -export { export int f; } // expected-error {{within another export declaration}} +export { export int f; } // expected-error {{within another export declaration}} expected-note {{export block begins here}} module :private; // expected-note {{private module fragment begins here}} export int priv; // expected-error {{export declaration cannot be used in a private module fragment}} |