1 // Tests for module-declaration syntax. 2 // 3 // RUN: rm -rf %t 4 // RUN: mkdir -p %t 5 // RUN: echo 'export module x; int a, b;' > %t/x.cppm 6 // RUN: echo 'export module x.y; int c;' > %t/x.y.cppm 7 // 8 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -emit-module-interface %t/x.cppm -o %t/x.pcm 9 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -emit-module-interface -fmodule-file=%t/x.pcm %t/x.y.cppm -o %t/x.y.pcm 10 // 11 // Module implementation for unknown and known module. (The former is ill-formed.) 12 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 13 // RUN: -DTEST=1 -DEXPORT= -DMODULE_NAME=z 14 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 15 // RUN: -DTEST=2 -DEXPORT= -DMODULE_NAME=x 16 // 17 // Module interface for unknown and known module. (The latter is ill-formed due to 18 // redefinition.) 19 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 20 // RUN: -DTEST=3 -DEXPORT=export -DMODULE_NAME=z 21 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 22 // RUN: -DTEST=4 -DEXPORT=export -DMODULE_NAME=x 23 // 24 // Miscellaneous syntax. 25 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 26 // RUN: -DTEST=7 -DEXPORT=export -DMODULE_NAME='z elderberry' 27 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 28 // RUN: -DTEST=8 -DEXPORT=export -DMODULE_NAME='z [[]]' 29 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 30 // RUN: -DTEST=9 -DEXPORT=export -DMODULE_NAME='z [[fancy]]' 31 // RUN: %clang_cc1 -std=c++1z -fmodules-ts -I%t -fmodule-file=%t/x.y.pcm -verify %s \ 32 // RUN: -DTEST=10 -DEXPORT=export -DMODULE_NAME='z [[maybe_unused]]' 33 34 EXPORT module MODULE_NAME; 35 #if TEST == 4 36 // expected-error@-2 {{redefinition of module 'x'}} 37 // expected-note-re@module-declaration.cpp:* {{loaded from '{{.*[/\\]}}x.pcm'}} 38 #elif TEST == 7 39 // expected-error@-5 {{expected ';'}} expected-error@-5 {{requires a type specifier}} 40 #elif TEST == 9 41 // expected-warning@-7 {{unknown attribute 'fancy' ignored}} 42 #elif TEST == 10 43 // expected-error-re@-9 {{'maybe_unused' attribute cannot be applied to a module{{$}}}} 44 #elif TEST == 1 45 // expected-error@-11 {{definition of module 'z' is not available}} 46 #else 47 // expected-no-diagnostics 48 #endif 49