aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/attrib58.C
blob: 01c00354a13de1818b5097acacddd66b9f78e99a (plain)
1
2
3
4
5
6
7
8
// PR c++/89325
// { dg-do compile }
// { dg-options "-Wattributes" }

struct A { friend int &operator<< (int &i, const A &) { return i; } };	// { dg-bogus "previous definition" }
#pragma GCC optimize ("-fno-ipa-cp-clone")
struct B {};
int &operator<<(int &, const B &);	// { dg-bogus "optimization attribute on '\[^\n\r]*' follows definition but the attribute doesn.t match" }