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

This change adds a new type node, DeducedTemplateSpecializationType, to represent a type template name that has been used as a type. This is modeled around AutoType, and shares a common base class for representing a deduced placeholder type. We allow deduced class template types in a few more places than the standard does: in conditions and for-range-declarators, and in new-type-ids. This is consistent with GCC and with discussion on the core reflector. This patch does not yet support deduced class template types being named in typename specifiers. llvm-svn: 293207
21 lines
706 B
C++
21 lines
706 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
template<typename T,
|
|
int I,
|
|
template<typename> class TT>
|
|
class A; // expected-note 3 {{template is declared here}}
|
|
|
|
template<typename> class X;
|
|
|
|
A<int, 0, X> * a1;
|
|
|
|
A<float, 1, X, double> *a2; // expected-error{{too many template arguments for class template 'A'}}
|
|
A<float, 1> *a3; // expected-error{{too few template arguments for class template 'A'}}
|
|
A a4; // expected-error{{use of class template 'A' requires template arguments}}
|
|
|
|
namespace test0 {
|
|
template <class t> class foo {};
|
|
template <class t> class bar {
|
|
bar(::test0::foo<tee> *ptr) {} // FIXME(redundant): expected-error 2 {{use of undeclared identifier 'tee'}}
|
|
};
|
|
}
|