repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wsequence-point-1.C
blob
fb5b8a1a8cb2cc98370fdc62c41d9b85faecd51c
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
}