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);
}