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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
ambig3.C
blob
08cf2b7dc15c10b39883698b564c36cd20ceb654
1
// { dg-do assemble }
2
// Testcase for ambiguity between function and variable declaration (8.2).
3
4
struct A {
5
A (int, int);
6
int k;
7
};
8
9
void f ()
10
{
11
int i[2], j;
12
A a (int (i[1]), j); // { dg-bogus "" } late parsing
13
A b (int (i[1]), int j); // function
14
a.k = 0; // { dg-bogus "" } late parsing
15
b (i, j);
16
}