matthewjasper

Results 6 issues of matthewjasper

See rust-lang/rust#44493 - [ ] Document existing inferred lifetime bounds in functions and impls - [ ] Document feature. Should this be documented with the existing inferred bounds? - [...

RFC Stabilization Docs

The rest of this RFC, apart from #278. - [ ] Document feature - [ ] Make use of feature where appropriate

RFC Stabilization Docs

Raising this now so that we can decide what the plan is here. - [ ] Document editions - [ ] Make sure that all examples are using Rust 2018...

RFC Stabilization Docs
A-editions

### Code Minimized from core (https://github.com/rust-lang/rust/blob/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/str/iter.rs#L707). This also ICEs without a doc comment being used, instead of erroring. ```rust macro_rules! generate_pattern_iterators { { $(#[$forward_iterator_attribute:meta])* } => { } } generate_pattern_iterators!...

bug

```rust // a.rs #[path = "b.rs"] mod module; // b.rs #[cfg(a)] mod submod {} #[cfg(not(a))] mod submod {} ``` I expected to see this happen: compiles Instead, this happened: error...

bug

I tried this code (from general experimentation with the compiler): ```rust mod a { pub fn f() {} } // Compiles if moved below b mod c { use crate::b::{f,...

bug
enhancement