www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Internal error: ..\ztc\symbol.c 1025 with a reproduction

reply "Matthias Dondorff" <nospam example.net> writes:
With the attached code it is possible to produce the error 

but quite different code.

DMD32 2.061 on windows.

I don't know, if everybody should go ahead and create tickets in 
the tracker, so I didn't. Please feel free to create it, if it 
doesn't overlap with another.

Here you go:

import std.string;

struct Foo {
	this(string bar) { 	}
	
	Foo opSlice(size_t start, size_t end) const {
		return Foo();
	}
	
	size_t opDollar(int dim)() const if(dim == 0) { return 1; }
}

int main(string[] ) {
	auto b = Foo("bar")[0..$];
	return 0;
}
Feb 04 2013
parent "Peter Alexander" <peter.alexander.au gmail.com> writes:
On Monday, 4 February 2013 at 21:12:08 UTC, Matthias Dondorff 
wrote:
 I don't know, if everybody should go ahead and create tickets 
 in the tracker, so I didn't. Please feel free to create it, if 
 it doesn't overlap with another.
Anyone can create tickets in the tracker. Please feel free to do so :-)
Feb 04 2013