CohenArthur
CohenArthur
Edited to reflect which macros we really need to focus on for libcore 1.49
Yep, all fixed now. Will add a testcase in a PR to close this out
@narpfel yes, I had reopened https://github.com/Rust-GCC/gccrs/issues/2144 as a follow up. We closed this issue because the original code would not compile, even though it should (with warnings)
This should be fixed by #2156 as well
Fixed by #2156
Add following syntax? ```rust type Nothing; type Maybe[T] = | Nothing | T; ```
Add following syntax? ```rust type Maybe[T] = | type Nothing | type Some(T); ```
Yeah, this is also true for static items: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=127506396739337c8e60b56c91427c69 Thanks for the report!
These two lines were needed when I added them at least, not sure if that has changed since. The abort calls were being optimized away otherwise.
I think fixing this issue will be pretty simple - we can just remove those two lines and run the testsuite, which should fail if those lines where necessary. I've...