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
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
ambig5.C
blob
e554d961f570a4e7012a955085706bc989325013
1
// PR c++/41786
2
3
struct A { A(int, char const*); };
4
int main() {
5
int i = 0, *b = &i;
6
A a(int(b[i]), "hello");
7
}