blob: a8c1761f6f5976767e31ce3fb3dc97170aef41a5 [file] [log] [blame]
// Build don't link:
typedef unsigned int atypedef;
struct astruct{};
void afunction();
void aovlfunction();
void aovlfunction(int);
int avariable;
namespace foo {
using ::atypedef;
using ::astruct;
using ::afunction;
using ::aovlfunction;
using ::avariable;
}