comparison gcc/testsuite/g++.dg/cpp0x/gen-attrs-37.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
8 struct S { 8 struct S {
9 int x; 9 int x;
10 S(const S &s) {} 10 S(const S &s) {}
11 }; 11 };
12 12
13 S getS() [[gnu::__stdcall__]]; // { dg-warning "ignored" } 13 S getS() [[gnu::__stdcall__]];
14 14
15 void test() 15 void test()
16 { 16 {
17 S s = getS(); 17 S s = getS();
18 } 18 }