Hacker News new | ask | show | jobs
by whoomp12342 1463 days ago
with no GC, is there compile time segfault checking like rust?
1 comments

Author here, that is the purpose lifetime inference is meant to serve. It automatically extends lifetimes of `ref`s so that they are long enough. A key advantage of these is avoiding lifetime annotations in code, at the cost of some lack of control since the lifetime is increasingly handled for you. You can also opt out by using raw pointer types though and easily segfault with those.