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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
friend.C
blob
e7982896a927614941a6d410c5eb67225dce5144
1
/* { dg-do compile } */
2
/* { dg-options -Wredundant-decls } */
3
4
/* Test to see if spurious warnings about redundant
5
declarations are emiited because of the friend
6
declaration. */
7
8
class Foo
9
{
10
friend void bar (Foo);
11
public:
12
};
13
14
extern void bar (Foo);