URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [ref2.C] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
// Copyright (C) 2005 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 7 Jan 2005 <nathan@codesourcery.com>
// PR 19298: Rejects legal
// Origin: Andrew Pinski <pinskia@gcc.gnu.org>
struct t
{
void f() const;
};
template <typename _Tp>
struct A
{
static t const& c;
};
template <typename _Tp>
void g(void)
{
A<_Tp>::c.f();
}
void h(void)
{
g<int>();
}
Go to most recent revision | Compare with Previous | Blame | View Log