bolt/deps/llvm-18.1.8/clang/test/Modules/export-in-another-export.cppm

6 lines
248 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify
export module M;
export { // expected-note {{export block begins here}}
export int foo() { return 43; } // expected-error {{export declaration appears within another export declaration}}
}