minix/external/bsd/llvm/dist/clang/test/Modules/Inputs/namespaces-left.h
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

60 lines
558 B
C++

@import namespaces_top;
float &global(float);
float &global2(float);
namespace LookupBeforeImport {
float &f(float);
}
namespace N1 { }
namespace N1 {
float& f(float);
}
namespace N2 {
float& f(float);
}
namespace N5 {
int &f(int);
}
namespace N6 {
int &f(int);
}
namespace N7 {
int &f(int);
}
namespace N8 {
int &f(int);
}
namespace N9 {
int &f(int);
}
namespace N10 {
int &f(int);
}
namespace N11 {
namespace {
class Foo;
}
Foo *getFoo();
}
namespace N12 {
namespace {
class Foo;
}
Foo *getFoo();
}