Home | History | Annotate | Download | only in temp.arg.template

Lines Matching defs:eval

3 template <class T> struct eval; // expected-note 3{{template is declared here}}
6 struct eval<TT<T1, Rest...>> { };
14 eval<A<int>> eA;
15 eval<B<int, float>> eB;
16 eval<C<17>> eC; // expected-error{{implicit instantiation of undefined template 'eval<C<17> >'}}
17 eval<D<int, 17>> eD; // expected-error{{implicit instantiation of undefined template 'eval<D<int, 17> >'}}
18 eval<E<int, float>> eE; // expected-error{{implicit instantiation of undefined template 'eval<E<int, float, 17> >}}