Fix bad regexp

From-SVN: r52994
This commit is contained in:
Nathan Sidwell 2002-05-01 07:35:19 +00:00
parent 0fa489890f
commit 2600218b4d

View File

@ -10,7 +10,7 @@ class A
{
public:
A & operator+=( int );
A & operator+( int ); // { dg-warning "`A& A::operator+(int)' should return by value" "" }
A & operator+( int ); // { dg-warning ".* should return by value" "" }
A operator+=( float );
A operator+( float );
};