URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [mem-partial2.C] - Rev 816
Compare with Previous | Blame | View Log
// PR c++/14032
// { dg-do run }
template <bool compare>
struct outer
{
template <bool compare_with,bool second>
struct inner // unspecialized compare != compare_with
{
static inline bool test()
{
return false;
}
};
template <bool second> // specialization compare == compare_with
struct inner<compare,second>
{
static inline bool test()
{
return true;
}
};
};
int main ()
{
bool b = outer<true>::inner<true,false>::test();
return b != true;
}