Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
scoped6.C
blob: d9566a7e0994d849674b3c25ba479ea3a3001b2b [
file
] [
log
] [
blame
]
template
<
typename
X
>
class
Foo
{
int
i
;
public
:
Foo
()
{
X
::
explode
();
// { dg-error "" }
}
};
class
Bar
{
Foo
<int>
foo_
;
public
:
Bar
()
{}
// { dg-error "instantiated" }
};
template
class
Foo
<int>
;