Lines Matching refs:export
10 export module foo;
32 export {
37 export int c;
40 export void f() {}
43 export struct T {
52 export {} // expected-error {{export declaration cannot be empty}}
53 export { // expected-note {{begins here}}
54 …// expected-warning {{ISO C++20 does not permit an empty declaration to appear in an export block}}
56 export { // expected-note {{begins here}}
57 …cted-warning {{ISO C++20 does not permit a static_assert declaration to appear in an export block}}
69 export int n; // expected-error {{expected member name or ';'}}
70 export static int n; // expected-error {{expected member name or ';'}}
77 // Cannot export within another export. This isn't precisely covered by the
81 export { // expected-note {{export block begins here}}
84 export { // expected-error {{appears within another export}}