xref: /llvm-project/clang/test/SemaTemplate/undeclared-template.cpp (revision c48442c9f38836c69d7b90dddf27eea549a4f14c)
1 // RUN: %clang_cc1 -std=c++2a -verify %s
2 
3 template<typename T> notdefined<T::any> PR45207; // expected-error {{no template named 'notdefined'}}
4 
5 // FIXME: We don't disambiguate this as an undeclared template-id even though there's nothing else it could be.
6 template<typename T> int var_template(notdefined<T::any>); // expected-error {{undeclared identifier 'notdefined'}} expected-error {{expected expression}}
7 
8 // FIXME: We don't disambiguate this as a function template even though it can't be a variable template due to the ', int'.
9 template<typename T> int fn_template(notdefined<T::any>, int); // expected-error {{undeclared identifier 'notdefined'}} expected-error {{expected expression}} expected-error {{expected '('}}
10