Bug 2363 – Spurious () required after function name when used with array in prefix form
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
x86
OS
Linux
Creation time
2008-09-16T20:54:00Z
Last change time
2015-06-09T05:15:02Z
Assigned to
bugzilla
Creator
andrei
Comments
Comment #0 by andrei — 2008-09-16T20:54:21Z
Sorry, couldn't find a shorter description.
void wyda(int[] a) { }
void main(string[] args) {
int[] a;
a.wyda;
}
This is crucial for integration of arrays with user-defined ranges.