view run/opIndex_04.d @ 480:a3d84fdbfd53

-inline / opIndex / struct Kevin Bealer <Kevin_member@pathlink.com> 2005-04-24 news:d4ha7g$fuc$1@digitaldaemon.com
author thomask
date Mon, 25 Apr 2005 05:43:26 +0000
parents
children 1e6afb94ce6d
line wrap: on
line source

// $HeadURI$
// $Author$
// $Date$

// @author@	Kevin Bealer <Kevin_member@pathlink.com>
// @date@	2005-04-24
// @uri@	news:d4ha7g$fuc$1@digitaldaemon.com

// __DSTRESS_DFLAGS__ -inline

module dstress.run.opIndex_04;

class Range{
	int width(){
		return 1;
	}
}

class Container {
	this(){
		data.length=2;
		data[0]=new Range;
		data[1]=new Range;
	}

	Range opIndex(int i){
		return data[i];
	}
    
	Range[] data;
}

int main(){
	Container ranges=new Container;
    
	Range r=ranges[0];
	if (r.width == 1){
		return 0;
	}
    
	assert(0);
}