compiler/rust: Fix a bad cast in the memstream abstraction
If you just do ref.cast(), it will cast the thing it's a reference to. If you want to turn a reference into a pointer, you need to explicitly use "as".
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
If you just do ref.cast(), it will cast the thing it's a reference to. If you want to turn a reference into a pointer, you need to explicitly use "as".