blob: 5d5b3af9cb4fe26e0d7e4f13cbc1c32f80a78761 [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" }
}