Java
- Generics type erasure (i.e. no reified generics)
- Inability to catch multiple exceptions (of different types) in a single catch block
- Lack of destructors (finalize() is a very poor substitute)
- No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)
- Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)