| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -65/+0 | |
| 2022-03-03 | Cleanup feature gates. | Camille GILLOT | -6/+6 | |
| 2019-10-29 | Change E0741 into E0742 | Guillaume Gomez | -2/+2 | |
| 2019-10-29 | Update ui tests | Guillaume Gomez | -2/+3 | |
| 2019-05-04 | Rollup merge of #60429 - estebank:pub-path, r=michaelwoerister | Mazdak Farrokhzad | -4/+15 | |
| Account for paths in incorrect pub qualifier help Handle case where incorrect pub qualifier with a mod path is used and provide the same help given for all other incorrect qualifiers by making the `pub(crate)` parse check more specific. | ||||
| 2019-05-01 | Added the E0704 error with a link to the Rust reference. | Christian | -0/+1 | |
| 2019-04-30 | Account for paths in incorrect pub qualifier help | Esteban Küber | -4/+15 | |
| 2019-04-18 | hide `--explain` hint if error has no extended info | Andy Russell | -1/+0 | |
| 2019-03-11 | Update tests | Vadim Petrochenkov | -5/+5 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -5/+5 | |
| 2018-06-19 | Update error code numbers | Esteban Küber | -5/+5 | |
| 2018-06-19 | Add code to incorrect `pub` restriction error | Esteban Küber | -4/+5 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -5/+5 | |
| 2017-11-24 | Merge cfail and ui tests into ui tests | Oliver Schneider | -5/+5 | |
| 2017-07-02 | Revert "Change error count messages" | Ariel Ben-Yehuda | -1/+1 | |
| This reverts commit 5558c64f33446225739c1153b43d2e309bb4f50e. | ||||
| 2017-05-24 | Change error count messages | Michael Kohl | -1/+1 | |
| See #33525 for details. | ||||
| 2017-04-25 | Rebase and address comments | Oliver Schneider | -4/+4 | |
| 2017-04-25 | Address PR comments | Oliver Schneider | -4/+4 | |
| 2017-04-25 | Update affected tests | Oliver Schneider | -13/+18 | |
| 2017-03-22 | Add diagnostic for incorrect `pub (restriction)` | Esteban Küber | -0/+47 | |
| Given the following statement ```rust pub (a) fn afn() {} ``` Provide the following diagnostic: ```rust error: incorrect restriction in `pub` --> file.rs:15:1 | 15 | pub (a) fn afn() {} | ^^^^^^^ | = help: some valid visibility restrictions are: `pub(crate)`: visible only on the current crate `pub(super)`: visible only in the current module's parent `pub(in path::to::module)`: visible only on the specified path help: to make this visible only to module `a`, add `in` before the path: | pub (in a) fn afn() {} ``` Remove cruft from old `pub(path)` syntax. | ||||
