Lines Matching defs:import
8 struct import { struct inner {}; };
18 import x = {}; // expected-error {{expected ';' after module name}}
23 template<int> struct import;
24 template<> struct import<n> {
28 // This is not valid because the 'import <n>' is a pp-import, even though it
29 // grammatically can't possibly be an import declaration.
30 struct X {} import<n>::y; // expected-error {{'n' file not found}}
36 ::import x = {};
39 import::inner xi = {};
44 import b;
48 extern "C++" import cxxi;
52 // This is a variable named 'import' that shadows the type 'import' above.
53 struct X {} import;