Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup3.C
blob: c96a0b0b981a938bd99bd6371407e21b530ebdbb [
file
] [
log
] [
blame
]
// PR c++/12397
struct
foo
{
};
template
<
typename
T
>
struct
bar
{
bar
(){}
int
i
;
bar
(
const
bar
<
T
>&
foo
)
:
i
(
foo
.
i
)
{}
};
int
main
()
{
bar
<int>
b1
;
bar
<int>
b2
(
b1
);
}