Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
ctor1-aux.cc
blob: 9990ca29322d5a943e0d451b28b6b3d7d700d96a [
file
] [
log
] [
blame
]
// Origin: Mark Mitchell <mark@codesourcery.com>
template
<
class
T
>
struct
S
{
template
<
class
U
>
S
(
U
);
};
int
main
()
{
S
<int>
(
3.0
);
}