| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -60/+0 | |
| 2022-10-01 | bless ui tests | Maybe Waffle | -1/+1 | |
| 2020-12-08 | Clarify the 'default is only allowed on...' error | Camelid | -6/+6 | |
| Code like impl Foo { default fn foo() {} } will trigger the error error: `default` is only allowed on items in `impl` definitions --> src/lib.rs:5:5 | 5 | default fn foo() {} | -------^^^^^^^^^ | | | `default` because of this but that's very confusing! I *did* put it on an item in an impl! So this commit changes the message to error: `default` is only allowed on items in trait impls --> src/lib.rs:5:5 | 5 | default fn foo() {} | -------^^^^^^^^^ | | | `default` because of this | ||||
| 2020-10-17 | Suggest minimal subset features in `incomplete_features` lint | Yuki Okushi | -0/+1 | |
| 2020-06-16 | warn against 'specialization' feature | Ralf Jung | -1/+10 | |
| 2020-02-24 | add `Span` to `ast::Defaultness::Default`. | Mazdak Farrokhzad | -6/+18 | |
| 2019-12-12 | Unify assoc item visitors more. | Mazdak Farrokhzad | -6/+6 | |
| 2019-12-12 | Alias `TraitItem` & `ImplItem`. | Mazdak Farrokhzad | -0/+38 | |
| Allow defaultness on trait items syntactically. | ||||
