CohenArthur

Results 342 issues of 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...

bug

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 @@...

enhancement
good-first-pr

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.

upstream

Before the 2021 edition, `:pat` may also be followed by `|`.

enhancement

https://gcc.gnu.org/pipermail/gcc-rust/2022-September/000490.html

upstream

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)

upstream

https://gcc.gnu.org/pipermail/gcc-rust/2022-September/000496.html

upstream

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...

enhancement

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...

bug