On 12/29/2013 10:38 PM, Afshin wrote:
module test;

class Foo {
     public static ulong next = 0;

     public static ulong getNext() {
         return next++;
     }
}

void main() {
     Foo.getNext();
}

/*
The next++ is the culprit.
Using a ++next does not throw an exception.
*/

Must have already been fixed. No problem on git head.

Ali

Reply via email to