view run/opIndex_03.d @ 1566:b50583aebed4

r8719@birke: tk | 2007-09-30 11:08:05 +0200 [Issue 1518] Crash using 'scope', 'with' and undefined 'RegExp' <regan@netmail.co.nz> 2007-09-19 http://d.puremagic.com/issues/show_bug.cgi?id=1518
author thomask
date Sun, 30 Sep 2007 09:47:53 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Kevin Bealer <Kevin_member@pathlink.com>
// @date@	2005-04-24
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3808

module dstress.run.opIndex_03;

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;
    
	if (ranges[0].width == 1){
		return 0;
	}
    
	assert(0);
}