repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
asan
/
pr90570.C
blob
c23669055165e7d139e309d97c00de9a0fd8e1bd
1
/* PR sanitizer/90570 */
2
/* { dg-do run } */
3
4
#include <vector>
5
6
struct stru
7
{
8
std::vector<int> v{1,2,3,4};
9
int i{5};
10
};
11
12
int main()
13
{
14
stru s1;
15
stru s2;
16
17
return 0;
18
}