OSDN Git Service

* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib37.C
1 // PR c++/43093
2 // { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } }
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 }