OSDN Git Service

2012-04-15 Fabien ChĂȘne <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / pr45049-1.C
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 }