view run/delegate_01.d @ 1489:b8c0195059d9

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

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

// @author@	Bent Rasmussen <exo@bent-rasmussen.info>
// @date@	2004-08-12
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=1338

module dstress.run.delegate_01;

struct List(T){
	T[] S;

	void bug(void delegate(inout T) f){
		f(S[0]);
	}
}

int main(){
	List!(bool) list;
	return 0;
}