> Ada seems pretty nice, but it does not have a borrow checker, does it?
IIUC, there is a SPARK implementation that does:
https://blog.adacore.com/using-pointers-in-spark /
https://www.adacore.com/uploads/techPapers/Safe-Dynamic-Memo...That said, there are whole classes of problems where, thanks to Ada's design, you don't even NEED pointers where you would in C or similar languages: http://video.fosdem.org/2016/aw1124/memory-management-with-a...
> I think deallocation is considered unsafe?
This too depends; Ada was designed so that a garbage-collector could be used, even in Ada83, most implementations do not take advantage of this. (There are JVM and DOTNET implementations where GC is required though.)
To achieve safe deallocation it is often delegated to scopes so that exiting a scope clears out all the memory you were using; see stack-allocation, pools/subpools, and local-declarations/inline-declarations.