view run/alias_07.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children 33a25c1e1cfc
line wrap: on
line source


// @author@	Ilya Zaitseff <sark7@mail333.com>
// @date@	2004-09-06

alias int MyInt;

int main(){
	int check(char[]c=""){
		return 1;
	}
	assert(check("ABC")==1);
	MyInt test(char[]c=""){
		return 2;
	}
	assert(test("abc")==2);
	return 0;
}