blob: 3e3743fbdbecf8623cc3493b15abe31a7fe02aad [file] [log] [blame]
/* { dg-do compile } */
struct Pitch
{
int notename_;
};
struct Audio_note
{
Audio_note (Pitch p);
};
void create_audio_elements ()
{
Pitch *pit;
new Audio_note (*pit);
}