CohenArthur
CohenArthur
I tried this code: ```rust enum WithVariants { Discri = 1, Simple, Tuple(i32), Structure { a: i32, b: i32 }, } ``` I expected to see this happen: rustc errors...
I actually would like to add the following changes so that this assumption will always be true: ```diff diff --git a/gcc/rust/rust-lang.cc b/gcc/rust/rust-lang.cc index 5ecd79b15..5f06862eb 100644 --- a/gcc/rust/rust-lang.cc +++ b/gcc/rust/rust-lang.cc @@...
Hi everyone, I might be going the wrong way about this but I am trying to have my web-app get launched with command line arguments. Specifically, I'm looking for a...
Remember to change your `./configure` line :) This is obviously up for discussion and I would be happy to get some more input.
Before the 2021 edition, `:pat` may also be followed by `|`.
https://gcc.gnu.org/pipermail/gcc-rust/2022-September/000490.html
As pointed out [here](https://gcc.gnu.org/pipermail/gcc-rust/2022-September/000489.html) Extra info [here](https://gcc.gnu.org/pipermail/gcc-rust/2022-September/000491.html)
https://gcc.gnu.org/pipermail/gcc-rust/2022-September/000496.html
When a macro is exported, the #[macro_export] attribute can have the local_inner_macros keyword added to automatically prefix all contained macro invocations with $crate::. This is intended primarily as a tool...
Some module items do not need to get lowered to HIR such as `macro_rules!` definitions. Hence, module lowering should act the same as crate lowering: Only emplace back the lowered...