view run/alias_12.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 6e4063f99377
line wrap: on
line source

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

// @author@	J C Calvarese <jcc7@cox.net>
// @date@	2004-06-21
// @uri@	news:cb7rbq$2qjd$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/572

module dstress.run.alias_12;

int test(){
	return 0;
}

class StdFile{
	alias test check;
}

int main(){
	StdFile f = new StdFile();
	f.check();
	return 0;
}