xref: /aosp_15_r20/external/clang/test/Modules/cxx-linkage-cache.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: rm -rf %t
2*67e74705SXin Li // RUN: %clang_cc1 -x objective-c++ -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify -std=c++11
3*67e74705SXin Li 
4*67e74705SXin Li @import cxx_linkage_cache;
5*67e74705SXin Li 
6*67e74705SXin Li T x; // expected-error {{unknown type name 'T'}}
7*67e74705SXin Li D::U<int> u;
8*67e74705SXin Li bool b = f(u);
9