mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 22:56:06 +00:00

specification and the TU to the new module. This is necessary to get the module ownership correct for entities that we temporarily hang off the TranslationUnitDecl, such as template parameters and function parameters. llvm-svn: 303373
26 lines
668 B
C++
26 lines
668 B
C++
// RUN: %clang_cc1 -x c++-module-map -fmodule-name=A -verify %s -fmodules-local-submodule-visibility
|
|
module A { module B {} module C {} }
|
|
|
|
#pragma clang module contents
|
|
|
|
#pragma clang module begin A.B
|
|
extern "C++" {
|
|
#pragma clang module begin A.C
|
|
template<typename T> void f(T t);
|
|
#pragma clang module end
|
|
|
|
void g() { f(0); } // ok
|
|
}
|
|
|
|
extern "C++" {
|
|
#pragma clang module begin A.C
|
|
} // expected-error {{extraneous closing brace}}
|
|
#pragma clang module end
|
|
|
|
#pragma clang module begin A.C
|
|
extern "C++" { // expected-note {{to match this '{'}}
|
|
#pragma clang module end // expected-error {{expected '}' at end of module}}
|
|
}
|
|
|
|
#pragma clang module end
|