OSDN Git Service

2012-06-14 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib19.C
1 // PR c++/19739
2
3 void Dummy() __attribute__(( , ));
4 void Dummy() {}
5
6 int main (int argc, char **argv)
7 {
8     Dummy();
9     return 0;
10 }