http://d.puremagic.com/issues/show_bug.cgi?id=2157


[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]


--- Comment #2 from [email protected] 2011-12-17 17:05:10 PST ---
This is still an issue in dmd 2.057, tested with the following code:


    mixin template EagerSingleton()
    {
        private this()
        {
            instance = this;
        }

        private static typeof(this) instance;
    }

    class NetworkPacketQueue
    {
        mixin EagerSingleton;

        public this(string bla)
        {
            this();
        }
    }

    void main()
    {
        new NetworkPacketQueue("Hey");
    }

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to