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
Merge trunk version 193672 into gupc branch.
[official-gcc.git]
/
libmudflap
/
testsuite
/
libmudflap.c++
/
pass27-frag.cxx
blob
aca2ea3a3b67941696aaaa1089c923168b458ea9
1
class
foo
{
2
char
z
[
10
];
3
public
:
4
char
*
get_z
() {
return
&
this
->
z
[
0
]; }
5
};
6
7
int
main
()
8
{
9
foo x
;
10
x
.
get_z
()[
9
] =
'a'
;
11
return
0
;
12
}