view nocompile/d/deprecated_22_C.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents b43bba5669d1
children
line wrap: on
line source

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

// @author@	Carlos Santander <csantander619@gmail.com>
// @date@	2006-05-16
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=7217

// __DSTRESS_ELINE__ 22

module dstress.nocompile.d.deprecated_22_C;

void baz() {
}

void foo(int i) {
}

deprecated alias baz foo;

void main(){
	foo();
}