Commit 7778d52d by Giovanni Bajo

re PR c++/13086 (the location of the warning message is wrong when calling…

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
parent b1e5b86c
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> 2004-02-04 Mark Mitchell <mark@codesourcery.com>
PR c++/13969 PR c++/13969
......
...@@ -16,6 +16,6 @@ A *a; // { dg-warning "`a' has incomplete type" "" } ...@@ -16,6 +16,6 @@ A *a; // { dg-warning "`a' has incomplete type" "" }
int int
main (int argc, char **argv) main (int argc, char **argv)
{ {
delete a; // { dg-warning "delete" "" { xfail *-*-* } } delete a; // { dg-warning "delete" "" }
return 0; return 0;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment