re PR c++/13086 (the location of the warning message is wrong when calling delete on incomplete type)

PR c++/13086
	* g++.dg/warn/incomplete1.C: Remove xfail.

From-SVN: r77290
This commit is contained in:
Giovanni Bajo 2004-02-05 02:49:31 +00:00
parent b1e5b86c52
commit 7778d52d89
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-02-04 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/13086
* g++.dg/warn/incomplete1.C: Remove xfail.
2004-02-04 Mark Mitchell <mark@codesourcery.com>
PR c++/13969

View File

@ -16,6 +16,6 @@ A *a; // { dg-warning "`a' has incomplete type" "" }
int
main (int argc, char **argv)
{
delete a; // { dg-warning "delete" "" { xfail *-*-* } }
delete a; // { dg-warning "delete" "" }
return 0;
}