blob: 590ddf507c9a78d15ccac1692cf66aeb5f818f57 [file] [log] [blame]
// Bug: g++ tries to call a constructor for a reference. Doh!
// Build don't link:
class B;
struct A {
B & b;
A (B & x) : b (x) { } // gets bogus error -
}; // gets bogus error -