[Issue 8703] Disabling default ctor does not forbid default construction

2012-09-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8703 Simen Kjaeraas simen.kja...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 8703] Disabling default ctor does not forbid default construction

2012-09-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8703 Maxim Fomin ma...@maxim-fomin.ru changed: What|Removed |Added CC||ma...@maxim-fomin.ru

[Issue 8703] Disabling default ctor does not forbid default construction

2012-09-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8703 --- Comment #3 from Kenji Hara k.hara...@gmail.com 2012-09-21 18:57:04 PDT --- (In reply to comment #2) (In reply to comment #0) This code should fail to compile, but doesn't. struct S { @disable this(); } void main() {