view nocompile/d/deprecated_22_C.d @ 1007:b43bba5669d1

incorrect deprecated error Carlos Santander <csantander619@gmail.com> 2006-05-16 news:e4fsch$i4g$1@digitaldaemon.com
author thomask
date Fri, 19 May 2006 16:39:38 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	Carlos Santander <csantander619@gmail.com>
// @date@	2006-05-16
// @uri@	news:e4fsch$i4g$1@digitaldaemon.com

// __DSTRESS_ELINE__ 22

module dstress.nocompile.d.deprecated_22_C;

void baz() {
}

void foo(int i) {
}

deprecated alias baz foo;

void main(){
	foo();
}