From e181de7f4fe9c75327836e5493c2783bcefc9293 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Mon, 22 Apr 2019 22:50:11 +0000 Subject: [c++2a] Implement semantic restrictions for 'export' declarations. llvm-svn: 358932 --- clang/test/CXX/module/module.interface/p1.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'clang/test/CXX/module/module.interface/p1.cpp') 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}} -- cgit v1.2.3