repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
new31.C
blob
33c94aaabaa7a4f0d8bf8bed333fae4c3c1bb950
1
// PR c++/48834
2
// { dg-options -Wuninitialized }
3
// { dg-do run }
4
5
struct S
6
{
7
S ():i (0)
8
{
9
}
10
int i;
11
};
12
13
int
14
main ()
15
{
16
S *s = new S[2];
17
return 0;
18
}