blob: e94cc7c978157e739571775bbd43c2774911eff1 [file] [log] [blame]
// { dg-do assemble }
// Bug: g++ tries to generate initialization semantics for a Node from an int,
// and fails.
struct Node // { dg-message "note" }
{
Node* child[2];
};
void bug(int i)
{
Node* q = new Node(i); // { dg-error "no matching" }
}