http://d.puremagic.com/issues/show_bug.cgi?id=1080 ------- Comment #1 from wstring at gmail.com 2007-03-26 09:34 ------- Yet another test program: // DMD 1.010 class Foo { static int bar() { return 2; } private this(); } void main() { int a = Foo.bar; } --