view nocompile/i/inout_01.d @ 1489:b8c0195059d9

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

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

// @author@	 Garett Bass <garettbass@studiotekne.com>
// @date@	2005-11-11
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5389

// __DSTRESS_ELINE__ 19

module dstress.nocompile.i.inout_01;

void test(inout byte i){
	i++;
}

void main(){
	short s;
	test(s);
	assert(s==1);
}