What are the known shortfalls of const in C++ and C++0x?
const
One problem is that the language also lets you const_cast it away, which defeats the purpose of using const in the first place.