Thread overview
[Issue 660] Incorrect protection error message
Feb 28, 2007
d-bugmail
Feb 02, 2012
Don
February 28, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=660


thomas-dloop@kuehne.cn changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|dvdfrdmn@users.sf.net       |bugzilla@digitalmars.com
          Component|glue layer                  |DMD
         OS/Version|Mac OS X                    |All
            Product|DGCC aka GDC                |D
           Platform|Macintosh                   |All




------- Comment #1 from thomas-dloop@kuehne.cn  2007-02-27 18:38 -------
test cases:
http://dstress.kuehne.cn/run/s/static_37_A.d
http://dstress.kuehne.cn/run/s/static_37_B.d
http://dstress.kuehne.cn/run/s/static_37_C.d
http://dstress.kuehne.cn/run/s/static_37_D.d
http://dstress.kuehne.cn/run/s/static_37_E.d
http://dstress.kuehne.cn/run/s/static_37_F.d
http://dstress.kuehne.cn/run/s/static_37_G.d
http://dstress.kuehne.cn/run/s/static_37_H.d
http://dstress.kuehne.cn/run/s/static_37_I.d
http://dstress.kuehne.cn/run/s/static_37_J.d
http://dstress.kuehne.cn/run/s/static_37_K.d


-- 

November 26, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=660


Andrei Alexandrescu <andrei@metalanguage.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |andrei@metalanguage.com
         AssignedTo|nobody@puremagic.com        |bugzilla@digitalmars.com


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
February 02, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=660


Don <clugdbug@yahoo.com.au> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |NEW


--- Comment #2 from Don <clugdbug@yahoo.com.au> 2012-02-01 22:32:25 PST ---
This is actually a bit worse. If you swap the order of the private static and public virtual foo, it compiles!

class A
{
    private static void foo(int i) {}
    public void foo() {}
}

class B
{
    void bar(int x)
    {
       A.foo (x);
    }
}

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