CohenArthur
CohenArthur
- [ ] Make sure of newline between two function definitions - [ ] When creating a scope in a switch case, brackets go under the colon and are indented...
This generator will help get "report skeletons" setup for weekly and monthly reports. Its goal will be mostly to fetch information using the Github API, in order to fill out...
Containing a list of good first issues and reminding people we offer mentoring
I tried this code: ```rust fn foo(x: i32) -> Box { box x } ``` I expected to see this happen: no parsing error, but an error about that syntax...
e.g. make sure that this code: ```rust fn main() { format_args!("heyo"); } ``` actually goes through the right `ASTLoweringExpr`
```rust #![feature(rustc_attrs)] #[rustc_builtin_macro] macro_rules! format_args { () => {}; } fn main() { let s = format_args!("Heyo", 15, 14); let s = format_args!("Heyo", a = 15, b = 14); }...
```rust pub fn new { ... } fn int_formatter(value: &i32, _: &mut Formatter) -> Result, | ~~~~~~~~~ ...... 61 | let a = Argument::new(&15, int_formatter); | ^~~~~~~~~~~~~ ```