Can any function be a deleted-function?
The working draft explicitly calls out that defaulted-functions must be special member functions (eg copy-constructor, default-constructor, etc, (§8.4.2.1-1)). Which makes perfect sense. However, I don't see any such restriction on deleted-functions(§8.4.3). Is that right? Or in other words are these three examples valid c++0? struc...