Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-37.C
blobd84afc9c613bc9696dad3e405cc01e4347722323
1 // PR c++/43093
2 // { dg-options "-pedantic" }
3 // { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }
4 // { dg-require-effective-target c++11 }
6 // c++11 attributes that apply to types are ignored for now
8 struct S {
9   int x;
10   S(const S &s) {}
13 S getS() [[gnu::__stdcall__]];
15 void test()
17   S s = getS();