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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr45049-1.C
blob
7b1dcd568ebe054bdc849636a961ba20067d624f
1
/* { dg-do compile } */
2
3
namespace n1 {
4
void modf ();
5
}
6
7
namespace n2 {
8
void trunc ();
9
void modf ();
10
}
11
12
void max ()
13
{
14
using n1::modf;
15
using n2::trunc;
16
using n2::modf;
17
}