Home | History | Annotate | Download | only in Inputs
      1 @import namespaces_top;
      2 
      3 float &global(float);
      4 float &global2(float);
      5 
      6 namespace LookupBeforeImport {
      7   float &f(float);
      8 }
      9 
     10 namespace N1 { }
     11 
     12 namespace N1 {
     13   float& f(float);
     14 }
     15 
     16 namespace N2 {
     17   float& f(float);
     18 }
     19 
     20 
     21 
     22 
     23 
     24 namespace N5 {
     25   int &f(int);
     26 }
     27 
     28 namespace N6 {
     29   int &f(int);
     30 }
     31 
     32 namespace N7 {
     33   int &f(int);
     34 }
     35 
     36 namespace N8 {
     37   int &f(int);
     38 }
     39 
     40 namespace N9 {
     41   int &f(int);
     42 }
     43 
     44 namespace N10 {
     45   int &f(int);
     46 }
     47 
     48 namespace N11 {
     49   namespace {
     50     class Foo;
     51   }
     52   Foo *getFoo();
     53 }
     54 
     55 namespace N12 {
     56   namespace {
     57     class Foo;
     58   }
     59   Foo *getFoo();
     60 }
     61