Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
inline2.C
blob: 0f5f78af11c8bc9e8b5557c73e493819e2d79ada [
file
] [
log
] [
blame
]
// PR c++/21627
template
<
typename
T
>
struct
TPL
{
TPL
(){}
~
TPL
(){}
void
method
()
{}
};
template
<>
TPL
<int>
::
TPL
();
template
<>
TPL
<int>
::~
TPL
();
template
<>
void
TPL
<int>
::
method
();
void
Foo
()
{
TPL
<int>
i
;
i
.
method
();
}