Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.ns
/
template2.C
blob: c88293e4330d4ea4eeff89d9d8cb406c7b9d930c [
file
] [
log
] [
blame
]
// { dg-do assemble }
//Inheritance from templates which are namespace members
namespace
foo
{
template
<
class
T
>
struct
x
{
x
(){}
};
}
class
y
:
public
foo
::
x
<int>
{};
y r
;