Thread overview
"__gshared static" versus "static __gshared"
Jan 29, 2011
%u
Feb 23, 2011
Trass3r
January 29, 2011
Is this a bug?

   __gshared static i;

makes i be thread-local, while

   static __gshared i;

makes it be shared.
January 29, 2011
On Sat, 29 Jan 2011 08:47:21 +0000, %u wrote:

> Is this a bug?
> 
>    __gshared static i;
> 
> makes i be thread-local, while
> 
>    static __gshared i;
> 
> makes it be shared.

If that's the case, then it is definitely a bug.  The order of attributes shouldn't matter.

-Lars
February 23, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=4419