Home | Sort by relevance Sort by last modified time |
/external/clang/test/Modules/Inputs/ | |
cxx-templates-unimported.h | 8 struct nested_cls; 17 struct nested_cls; 25 template<> struct cls<void>::nested_cls {}; struct in class:hidden_specializations::cls |
cxx-templates-common.h | 61 struct nested_cls {}; struct in struct:hidden_specializations::cls |
/external/clang/test/Modules/ | |
cxx-templates.cpp | 194 cls<void>::nested_cls *nk1; // ok 200 cls<void>::nested_cls unk1; // expected-error 1+{{explicit specialization of 'nested_cls' must be imported}} expected-error 1+{{definition of}} 223 struct cls<int>::nested_cls {}; // expected-error 1+{{explicit specialization of 'cls<int>' must be imported}} expected-error 1+{{definition of}} struct in class:hidden_specializations::cls 228 template<typename T> struct cls<T*>::nested_cls {}; // expected-error 1+{{partial specialization of 'cls<type-parameter-0-0 *>' must be imported}} struct in class:hidden_specializations::cls |