comparison run/o/odd_bug_04_E.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents b8c0195059d9
children
comparison
equal deleted inserted replaced
1534:345207906be7 1535:20d8ee6523e1
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5755 7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5755
8 8
9 module dstress.run.o.odd_bug_04_E; 9 module dstress.run.o.odd_bug_04_E;
10 10
11 abstract class Container(V) { 11 abstract class Container(V) {
12 abstract int opApply(int delegate(inout V) dg); 12 abstract int opApply(int delegate(ref V) dg);
13 } 13 }
14 14
15 abstract class MutableList(V): Container!(V) { 15 abstract class MutableList(V): Container!(V) {
16 abstract MutableList insertBefore(int i, V item); 16 abstract MutableList insertBefore(int i, V item);
17 17