URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [crash84.C] - Rev 693
Compare with Previous | Blame | View Log
// Contributed by Dodji Seketeli <dodji@redhat.com>// Origin PR c++/35405// { dg-do compile }template<typename T> struct a{template <template <typename> class C, typename X, C<X>* =0>struct b // { dg-error "class C' is not a template|is not a valid type" }{};};voidfoo (){a<int> v; // { dg-message "required from here" }}
