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
/
parse
/
new2.C
blob
d233b68caf464d74e06553a4c66b524eb08866e4
1
// { dg-do compile }
2
// Contributed by David Daney <daney at gcc dot gnu dot org>
3
// PR c++/14181: Cryptic error message for ill-formed new expressions
4
5
void f1(void)
6
{
7
(void)new (char*)[10]; // { dg-error "parenthesized|parentheses" }
8
(void)new char*[10];
9
}