repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
conv1.C
blob
6c16fe484189f097afc149f884d3387b92323ecb
1
// Test for backwards brain-damage compatibility with -fpermissive.
2
// { dg-options "-fpermissive -w" }
3
4
void f ();
5
void f (int *);
6
void g (int);
7
8
int main ()
9
{
10
void *v = 1234;
11
void (*p)() = v;
12
int i = v;
13
f (i);
14
f (v);
15
g (v);
16
enum { a } b = i;
17
void (*p2)(int) = p;
18
unsigned *ip = &i;
19
}