OSDN Git Service

2009-09-01 Diego Novillo <dnovillo@google.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wsequence-point-1.C
1 // { dg-do compile }
2 // { dg-options "-Wsequence-point" }
3 struct C
4 {
5   ~C() throw();
6 };
7
8 void t_test1 (C* mapping)
9 {
10   delete [] mapping;
11 }