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 reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
overcnv1.C
blob
a161e9af18a0d442823ab3320553c9637a102aa8
1
// { dg-do assemble }
2
3
class A {
4
public:
5
void f(const char * const * );
6
};
7
void f(const char * const *) {}
8
9
void g()
10
{
11
char *ar[10];
12
A a;
13
f(ar);
14
a.f(ar);
15
}