|
|
|
|
|
by IshKebab
101 days ago
|
|
The problem isn't implicit things happening. He's talking about this problem. Can this code panic? foo();
You can't easily answer that in Rust or Zig. In both cases you have to walk the entire call graph of the function (which could be arbitrarily large) and check for panics. It's not feasible to do by hand. The compiler could do it though. |
|