view nocompile/alias_05.d @ 338:1f6cf5ccfbc9

1) updated rules to dmd-0.119 2) added __DSTRESS_ELINE__ tags
author thomask
date Mon, 21 Mar 2005 20:45:57 +0000
parents 5f98d4a33d49
children 4c83f19a8301
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// __DSTRESS__ELINE__ 12

module dstress.nocompile.alias_05;

alias int myint;

void foo(int x) { }
void foo(myint m) { } // error, multiply defined function foo

int main(char[][] args){
	myint a;
	return a;
}