// P95.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
void Validate(float x)
{
	printf("float\n");

}

void Validate(int x)
{
	printf("int\n");
	
}


int main(int argc, char* argv[])
{
	void Validate(double x);
	::Validate(2.0f);
	printf("Hello World!\n");
	return 0;
}

void Validate(double x)
{
	printf("double\n");
	
}