view nocompile/c/continue_03_B.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 20d8ee6523e1
children
line wrap: on
line source

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

// @author@	Hiroshi Sakurai <Hiroshi_member@pathlink.com>
// @date@	2005-08-27
// @uri@	news:dep4oc$8sq$1@digitaldaemon.com
// @uri@	http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F20
// @desc@	Internal error: s2ir.c 481

// __DSTRESS_ELINE__ 23

module dstress.nocompile.c.continue_03_B;

class Stream{
	int opApply(int delegate(ref char[] line) dg){
	}
}

void parse(Stream stream){
	foreach (char [] line; stream) {
		if (line.length == 0) {
			continue;
		}
	}
}