www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Typo in DIP25 ?

reply Parke via Digitalmars-d <digitalmars-d puremagic.com> writes:
Hi,

In DIP25, what is the meaning of pairing an open parenthesis with a
closing curly brace?  Is this a typo?

From Dec 28, 2014:
http://wiki.dlang.org/?title=DIP25&oldid=5279#In_a_nutshell ref int fun(ref int a} { return a; } // ERROR ref int fun(ref inout int a} { return a; } // FINE
From today:
http://wiki.dlang.org/DIP25#In_a_nutshell ref int fun(ref int a} { return a; } // ERROR ref int gun(return ref int a} { return a; } // FINE ref T hun(T)(ref T a} { return a; } // FINE, templates use deduction Thanks! -Parke
Feb 27 2015
parent Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> writes:
On 2/27/15 12:22 PM, Parke via Digitalmars-d wrote:
 Hi,

 In DIP25, what is the meaning of pairing an open parenthesis with a
 closing curly brace?  Is this a typo?

From Dec 28, 2014:
http://wiki.dlang.org/?title=DIP25&oldid=5279#In_a_nutshell ref int fun(ref int a} { return a; } // ERROR ref int fun(ref inout int a} { return a; } // FINE
From today:
http://wiki.dlang.org/DIP25#In_a_nutshell ref int fun(ref int a} { return a; } // ERROR ref int gun(return ref int a} { return a; } // FINE ref T hun(T)(ref T a} { return a; } // FINE, templates use deduction Thanks! -Parke
Fixed, thanks. -- Andrei
Feb 27 2015