OSDN Git Service

ac35587892ac68255c1c180703b1581d815bab17
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib37.C
1 // PR c++/43093
2 // { dg-do compile { target i?86-*-* } }
3
4 struct S {
5   int x;
6   S(const S &s) {}
7 };
8
9 S __attribute__((__stdcall__)) getS();
10
11 void test()
12 {
13   S s = getS();
14 }