1 /* { dg-do compile } */
2 
3 struct Pitch
4 {
5   int notename_;
6 };
7 struct Audio_note
8 {
9   Audio_note (Pitch p);
10 };
create_audio_elements()11 void create_audio_elements ()
12 {
13   Pitch *pit;
14   new Audio_note (*pit);
15 }
16