Merge from mainline
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr26140.C
blob3e3743fbdbecf8623cc3493b15abe31a7fe02aad
1 /* { dg-do compile } */
3 struct Pitch
5   int notename_;
6 };
7 struct Audio_note
9   Audio_note (Pitch p);
11 void create_audio_elements ()
13   Pitch *pit;
14   new Audio_note (*pit);