León Orell Valerian Liehr

Results 31 issues of León Orell Valerian Liehr

[Literate Haskell](https://wiki.haskell.org/Literate_programming) is an alternative form of Haskell code where comments are the default and code is marked special. It's not uncommon. The file extension is `.lhs` but the data...

enhancement

Syntax support for `#![feature(inline_const)]` was added in #7010 (rust-analyzer/ungrammar#17). However, r-a fails to parse the following code whereas rustc accepts it: ```rust fn f() { match () { () =>...

S-unactionable
A-parser

I would expect the following code to compile successfully since we explicitly opt out of implementing `Copy`: ```rust #![feature(negative_impls)] #![deny(missing_copy_implementations)] #![crate_type = "lib"] pub struct Struct { pub field: i32,...

A-lint
C-bug
F-negative_impls

You can already implement `!Copy` for a lot of types (with `#![feature(negative_impls)]`). However, before this PR you could not implement `!Copy` for ADTs whose fields don't implement `Copy` which didn't...

T-compiler
S-waiting-on-review
F-negative_impls
T-types

Don't blindly emit a diagnostic claiming that “*`main` has an invalid return type*” if we encounter a type that should but doesn't implement `std::process::Termination` and isn't actually the return type...

A-diagnostics
T-compiler
S-waiting-on-review
T-libs

The following programs get wrongfully rejected since my PR #119505 (nightly-2024-01-04): ```rs pub struct S; trait Trait { fn provided() { impl S { pub fn perform() {} //~ ERROR...

A-associated-items
T-compiler
C-bug

The first commit is just drive-by cleanup. Provide a structured suggestion if the user forgot to prefix a “const parameter” with `const`, e.g., in `struct Tagged;`. This happens to me...

T-compiler
S-waiting-on-bors

> Manually transferred from rust-lang/rust#120551. > Originally reported by @max-ishere. --- `cargo fmt` fails to format document with `#[test_case()]` macro when there is a trailing space inside the macro. Code...

a-macros
e-trailing whitespace

I don't know when exactly this was changed since I effectively took a break from hacking on rustdoc for a few months until last month. I faintly remember a smaller...

See rust-lang/compiler-team#723. Blocked on rust-lang/rust#120926.

blocked