lolbinarycat

Results 142 issues of lolbinarycat

repurposes existing syntax that previously had a nonsese meaning. now `fn:add, u8 -> u8` searches for fn items with "add" in the name, that take a `u8` argument and return...

T-rustdoc
S-waiting-on-review

several control flow expressions are actually place expressions: ``` fn main() { let arr = [10, 20]; let arr_ref = &loop { break arr[0]; }; dbg!(arr_ref); } ``` i've tested...

mod a { pub fn b() { print!("1") } } mod c { pub fn b() { print!("2") } } pub use c::b; pub use a::*; fn main() { b();...

## Bug Report ### Version ``` │ │ │ └── tracing v0.1.40 │ │ │ ├── tracing-attributes v0.1.27 (proc-macro) │ │ │ └── tracing-core v0.1.32 ├── tracing v0.1.40 (*) └──...

### Steps to reproduce (if necessary) Steps to reproduce the behavior: 1. create ~13 drafts 2. go to /me/posts/ 3. click on "Load More.." the loaded post's "edit" button will...

### Steps to reproduce (if necessary) Steps to reproduce the behavior: 1. Go to 'Customize' 2. Add `a { color: initial; }` to custom CSS. ### Expected behavior no warning...

rustdoc search has a quite handy [advanced search syntax](https://doc.rust-lang.org/nightly/rustdoc/read-documentation/search.html), however a lot of people don't know how powerful it is. I propose a "search (tip) of the week" section right...

### What it does warn if an item is annotated with `pub(crate)` in the root module of a crate. this would also apply to `use` items. ### Advantage the default...

A-lint

lots of issues on the rust repo are labeled as [E-needs-test](https://github.com/rust-lang/rust/issues?q=label%3AE-needs-test%20state%3Aopen), for when issues are solved, but no regression test exists. writing unit tests is the type of low-priority, low-stakes...

summarizing long discussions is very helpful, doesn't demand reviewer attention, and doesn't (usually) require knowledge of rustc internals, and doesn't even require writing any code. all of this makes it...

C-discussion
A-meta
A-contributor-onboarding