digitalmars.D.bugs - [Issue 444] New: Inside a foreach with delegates, void return does not compile
- d-bugmail puremagic.com (23/23) Oct 19 2006 http://d.puremagic.com/issues/show_bug.cgi?id=444
- Thomas Kuehne (11/20) Nov 08 2006 -----BEGIN PGP SIGNED MESSAGE-----
- d-bugmail puremagic.com (9/9) Nov 25 2006 http://d.puremagic.com/issues/show_bug.cgi?id=444
http://d.puremagic.com/issues/show_bug.cgi?id=444
Summary: Inside a foreach with delegates, void return does not
compile
Product: D
Version: 0.172
Platform: PC
OS/Version: Windows
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla digitalmars.com
ReportedBy: kinaba is.s.u-tokyo.ac.jp
void main()
{
int nothing( int delegate(inout int) dg ) {return 0;}
foreach(int x; ¬hing)
return;
}
issues an error on dmd 0.172 (without line number info):
cannot implicitly convert expression (0) of type int to void
--
Oct 19 2006
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 d-bugmail puremagic.com schrieb am 2006-10-20:http://d.puremagic.com/issues/show_bug.cgi?id=444void main() { int nothing( int delegate(inout int) dg ) {return 0;} foreach(int x; ¬hing) return; } issues an error on dmd 0.172 (without line number info): cannot implicitly convert expression (0) of type int to voidAdded to DStress as http://dstress.kuehne.cn/compile/r/return_10_A.d Thomas -----BEGIN PGP SIGNATURE----- iD8DBQFFUgHLLK5blCcjpWoRAq8UAJ0YYx8jUri/zQNI5Q2jcH0XhTeXHQCfad+P yvXDTZcuqbqjrvv8XxVg7zg= =2aCD -----END PGP SIGNATURE-----
Nov 08 2006
http://d.puremagic.com/issues/show_bug.cgi?id=444
bugzilla digitalmars.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
Fixed DMD 0.175
--
Nov 25 2006









Thomas Kuehne <thomas-dloop kuehne.cn> 