[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / preferred_name.cppm
blob46ad96cb1abc33cac1650f9708416ecfa626455d
1 // Tests that the ODR check wouldn't produce false-positive result for preferred_name attribute.
2 //
3 // RUN: rm -rf %t
4 // RUN: mkdir -p %t
5 // RUN: split-file %s %t
6 //
7 // RUN: %clang_cc1 -std=c++20 %t/A.cppm -emit-module-interface -o %t/A.pcm
8 // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t -I%t %t/Use.cppm -verify -fsyntax-only
9 // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t -I%t %t/Use1.cpp -verify -fsyntax-only
10 // RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t -I%t %t/Use2.cpp -verify -fsyntax-only
12 //--- foo.h
13 template<class _CharT>
14 class foo_templ;
16 typedef foo_templ<char> foo;
18 template<class _CharT>
19 class
20 __attribute__((__preferred_name__(foo)))
21 foo_templ {
22 public:
23     foo_templ() {}
26 inline foo_templ<char> bar()
28   return foo_templ<char>();
31 //--- A.cppm
32 module;
33 #include "foo.h"
34 export module A;
36 //--- Use.cppm
37 // expected-no-diagnostics
38 module;
39 #include "foo.h"
40 export module Use;
41 import A;
43 //--- Use1.cpp
44 import A;         // expected-warning@foo.h:8 {{attribute declaration must precede definition}}
45 #include "foo.h"  // expected-note@foo.h:9 {{previous definition is here}}
47 //--- Use2.cpp
48 // expected-no-diagnostics
49 #include "foo.h"
50 import A;