Re: alias declaration spec

2014-02-26 Thread John Colvin
On Wednesday, 26 February 2014 at 11:45:54 UTC, Jonathan M Davis wrote: On Tuesday, February 25, 2014 23:14:08 cal wrote: On Tuesday, 25 February 2014 at 23:09:43 UTC, Jonathan M Davis wrote: > On Tuesday, February 25, 2014 22:32:44 cal wrote: >> Grammar spec >> (http://dlang.org/grammar.html#

Re: alias declaration spec

2014-02-26 Thread Jonathan M Davis
On Tuesday, February 25, 2014 23:14:08 cal wrote: > On Tuesday, 25 February 2014 at 23:09:43 UTC, Jonathan M Davis > > wrote: > > On Tuesday, February 25, 2014 22:32:44 cal wrote: > >> Grammar spec (http://dlang.org/grammar.html#AliasDeclaration) > >> allows: > >> > >> AliasDeclaration: > >>

Re: alias declaration spec

2014-02-25 Thread cal
On Tuesday, 25 February 2014 at 23:09:43 UTC, Jonathan M Davis wrote: On Tuesday, February 25, 2014 22:32:44 cal wrote: Grammar spec (http://dlang.org/grammar.html#AliasDeclaration) allows: AliasDeclaration: alias BasicType Declarator DMD allows: alias ref int MyRefInt; Is the ref stora

Re: alias declaration spec

2014-02-25 Thread Jonathan M Davis
On Tuesday, February 25, 2014 22:32:44 cal wrote: > Grammar spec (http://dlang.org/grammar.html#AliasDeclaration) > allows: > > AliasDeclaration: > alias BasicType Declarator > > DMD allows: > > alias ref int MyRefInt; > > Is the ref storage class allowed by the current grammar spec? No.

alias declaration spec

2014-02-25 Thread cal
Grammar spec (http://dlang.org/grammar.html#AliasDeclaration) allows: AliasDeclaration: alias BasicType Declarator DMD allows: alias ref int MyRefInt; Is the ref storage class allowed by the current grammar spec?