Files
clang-p2996/clang/test/Modules/Inputs/namespaces-right.h
Ted Kremenek c1e4dd0e8e Change @import to @__experimental_modules_import. We are not ready to commit to a particular syntax for modules,
and don't have time to push it forward in the near future.

llvm-svn: 151841
2012-03-01 22:07:04 +00:00

62 lines
576 B
C++

@__experimental_modules_import namespaces_top;
namespace N2 { }
namespace N2 { }
namespace N2 { }
namespace N2 { }
namespace N2 {
double& f(double);
}
namespace N3 {
double& f(double);
}
namespace N5 {
double &f(double);
}
namespace N6 {
double &f(double);
}
namespace N7 {
double &f(double);
}
namespace N8 {
int &f(int);
}
namespace N9 {
int &f(int);
}
namespace N10 {
int &f(int);
}
namespace N11 {
namespace {
class Foo;
}
void consumeFoo(Foo*);
}
namespace N12 {
namespace {
class Foo;
}
void consumeFoo(Foo*);
}