@pettter I think this is intentionally, makes it very handy for stuff like:
```
const char* someval = getenv("MYVAR") ?: "fallback";
```
It seemed quite weird at first to me too, but now I cherrish it.
There are no compiler warnings around it even in release/optimized builds, so I assume it is either an official feature or some compiler extensions.
It works on both GCC and Clang by the way
@falktx I dunno it feels like there's going to be some very big potential type casting problems lurking in there. Lovely as long as you're only working with ints, but I'd be cautious to stray beyond that.