[Issue 5150] New: lazy allows you to declare void parameters
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Mon Nov 1 09:25:39 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=5150
Summary: lazy allows you to declare void parameters
Product: D
Version: unspecified
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: jmdavisProg at gmx.com
--- Comment #0 from Jonathan M Davis <jmdavisProg at gmx.com> 2010-11-01 09:24:46 PDT ---
This program compiles:
void func(lazy void a)
{
}
void main()
{
}
It shouldn't. If a were not lazy, you'd get the error
d.d(1): Error: cannot have parameter of type void
It shouldn't be any more legal to have a lazy void parameter than a void
parameter. It makes it seem like lazy parameters aren't properly type checked.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list