brintos

brintos / llvm-project-archived public Read only

0
0
Text · 248 B · 38cb4d6 Raw
6 lines · plain
1// RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify2export module M;3export { // expected-note {{export block begins here}}4    export int foo() { return 43; } // expected-error {{export declaration appears within another export declaration}}5}6