Richard Smith | 8df390f | 2016-09-08 23:14:54 +0000 | [diff] [blame] | 1 | // 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 Smith | bbcc9f0 | 2016-08-26 00:14:38 +0000 | [diff] [blame] | 3 | |
Richard Smith | 81328ac | 2017-04-21 22:39:18 +0000 | [diff] [blame] | 4 | export module foo; |
Richard Smith | 8df390f | 2016-09-08 23:14:54 +0000 | [diff] [blame] | 5 | #ifndef ERRORS |
| 6 | // expected-no-diagnostics |
| 7 | #else |
Richard Smith | 81328ac | 2017-04-21 22:39:18 +0000 | [diff] [blame] | 8 | // FIXME: diagnose 'export' declaration in non-module |
| 9 | // FIXME: diagnose missing module-declaration when building module interface |
Richard Smith | bbcc9f0 | 2016-08-26 00:14:38 +0000 | [diff] [blame] | 10 | |
Richard Smith | 8df390f | 2016-09-08 23:14:54 +0000 | [diff] [blame] | 11 | // FIXME: proclaimed-ownership-declarations? |
| 12 | |
| 13 | export { |
| 14 | int a; |
| 15 | int b; |
| 16 | } |
| 17 | export int c; |
| 18 | |
| 19 | namespace N { |
| 20 | export void f() {} |
| 21 | } |
| 22 | |
| 23 | export struct T {} t; |
| 24 | |
| 25 | struct S { |
| 26 | export int n; // expected-error {{expected member name or ';'}} |
| 27 | export static int n; // expected-error {{expected member name or ';'}} |
| 28 | }; |
| 29 | void f() { |
| 30 | export int n; // expected-error {{expected expression}} |
| 31 | } |
Richard Smith | bbcc9f0 | 2016-08-26 00:14:38 +0000 | [diff] [blame] | 32 | #endif |