Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
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
);
}