Lines Matching refs:export
5 export module X;
11 export typedef S S; // OK, does not redeclare an entity
12 export struct S; // expected-error {{cannot export redeclaration 'S' here since the previous dec…
16 export struct Y;
20 export struct X; // expected-error {{cannot export redeclaration 'X' here since the previous declar…
21 export struct Y; // OK
23 export struct Z; // expected-error {{cannot export redeclaration 'Z' here since the previous declar…
32 export struct B {}; // expected-error {{cannot export redeclaration 'B' here since the previous dec…
33 export struct C; // expected-error {{cannot export redeclaration 'C' here since the previous dec…
39 export template <typename T>
45 export template <typename U>
49 export void baz(); // expected-error {{cannot export redeclaration 'baz' here since the previous de…
52 export void foo();
54 export void bar(); // expected-error {{cannot export redeclaration 'bar' here since the previous de…
66 export void A::f1(); // expected-error {{cannot export redeclaration 'f1' here since the previous d…
71 export template <typename T>
78 export template <typename T>
84 export template <typename T>
88 export int var; // expected-error {{cannot export redeclaration 'var' here since the previous decla…
92 export template <typename T>
103 export class foo;
105 export class foo {