blob: f7835bd167b202babfd52ee0496c1d0346a05d00 [file] [log] [blame]
Richard Smith8df390f2016-09-08 23:14:54 +00001// RUN: %clang_cc1 -std=c++1z -fmodules-ts -emit-module-interface %s -o %t.pcm -verify
2// RUN: %clang_cc1 -std=c++1z -fmodules-ts -emit-module-interface %s -o %t.pcm -verify -Dmodule=int -DERRORS
Richard Smithbbcc9f02016-08-26 00:14:38 +00003
4module foo;
Richard Smith8df390f2016-09-08 23:14:54 +00005#ifndef ERRORS
6// expected-no-diagnostics
7#else
8// expected-error@-4 {{expected module declaration at start of module interface}}
Richard Smithbbcc9f02016-08-26 00:14:38 +00009
Richard Smith8df390f2016-09-08 23:14:54 +000010// FIXME: support 'export module X;' and 'export { int n; module X; }'
11// FIXME: proclaimed-ownership-declarations?
12
13export {
14 int a;
15 int b;
16}
17export int c;
18
19namespace N {
20 export void f() {}
21}
22
23export struct T {} t;
24
25struct S {
26 export int n; // expected-error {{expected member name or ';'}}
27 export static int n; // expected-error {{expected member name or ';'}}
28};
29void f() {
30 export int n; // expected-error {{expected expression}}
31}
Richard Smithbbcc9f02016-08-26 00:14:38 +000032#endif