#include <iostream>

typedef unsigned char uint8;		// Global

namespace test1						// Namespace
{
	typedef unsigned char uint8;
}

namespace test2						// Namespace
{
	typedef unsigned char uint8;
};

using namespace std;
using namespace test1;
using namespace test2;

int main(int argc, char* argv[])
{
	uint8 data;
	return 0;
}