view nocompile/o/opAssign_01_A.d @ 1489:b8c0195059d9

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

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

// @author@	Chris Sauls <ibisbasenji@gmail.com>
// @date@	2005-07-18
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4549

module dstress.nocompile.o.opAssign_01_A;

void func(inout int[] x){
}

void main(){
	int[] foo, bar;
	func(bar = foo.dup);
}