view nocompile/o/opAssign_01_B.d @ 602:58c17111478f

post PFLUG catch up 1
author thomask
date Mon, 18 Jul 2005 09:35:40 +0000
parents
children 0e86ed849adc
line wrap: on
line source

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

// @author@	Chris Sauls <ibisbasenji@gmail.com>
// @date@	Jul 2005-07-18
// @uri@	news:dbfiit$29h3$1@digitaldaemon.com

module dstress.nocompile.o.opAssign_01_B;

void func(inout int x){
}

void main(){
	int foo, bar;
	func(bar = foo);
}