| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-27 | tests: Move run-pass tests with naming conflicts to ui | Vadim Petrochenkov | -783/+0 | |
| 2019-07-27 | tests: Move run-pass tests without naming conflicts to ui | Vadim Petrochenkov | -2073/+0 | |
| 2019-07-27 | tests: Add missing run-pass annotations | Vadim Petrochenkov | -0/+2 | |
| 2019-07-19 | Implement checks for meta-variables in macros | Julien Cretin | -0/+34 | |
| 2019-07-17 | normalize use of backticks in compiler messages for librustc/lint | Samy Kacimi | -1/+1 | |
| https://github.com/rust-lang/rust/issues/60532 | ||||
| 2019-07-15 | pprust: Fix formatting regressions from the previous commits | Vadim Petrochenkov | -2/+2 | |
| Fix some remaining cases of bad formatting Update some failing tests | ||||
| 2019-07-07 | Collect library features from non-exported macros | Vadim Petrochenkov | -1/+1 | |
| 2019-06-09 | Fix inaccurate comments in '?' Kleene operator tests. | Mazdak Farrokhzad | -26/+60 | |
| 2019-06-09 | Update tests since ? macro op is supported on 2015. | Mazdak Farrokhzad | -0/+33 | |
| 2019-06-08 | Remove unused `#![feature(custom_attribute)]`s | Vadim Petrochenkov | -1/+0 | |
| 2019-05-29 | Update run-pass test suite to use dyn | memoryruins | -3/+3 | |
| 2019-05-17 | Remove the unstable and deprecated mpsc_select | Josh Stone | -2/+0 | |
| This removes macro `select!` and `std::sync::mpsc::{Handle, Select}`, which were all unstable and have been deprecated since 1.32. | ||||
| 2019-04-22 | Remove double trailing newlines | varkor | -4/+0 | |
| 2019-02-07 | fix existing tests | mark | -8/+8 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -894/+5 | |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -1/+1 | |
| 2018-11-27 | remove uses of feature gate | Mark Mansi | -2/+0 | |
| 2018-11-21 | macro_literal_matcher: fixes per petrochenkov's review | Dan Aloni | -1/+0 | |
| 2018-11-21 | Stabilize macro_literal_matcher | Dan Aloni | -1/+1 | |
| 2018-11-03 | fix test fallout | Alex Burka | -4/+4 | |
| 2018-10-28 | resolve: Refactor away `legacy_macro_imports`/`LegacyMacroImports` | Vadim Petrochenkov | -0/+8 | |
| 2018-10-25 | Rollup merge of #54977 - estebank:macro-arg-parse, r=pnkfelix | Pietro Albini | -0/+16 | |
| Accept `Option<Box<$t:ty>>` in macro argument Given the following code, compile successfuly: ``` macro_rules! test { ( fn fun() -> Option<Box<$t:ty>>; ) => { fn fun(x: $t) -> Option<Box<$t>> { Some(Box::new(x)) } } } test! { fn fun() -> Option<Box<i32>>; } ``` Fix #25274. | ||||
| 2018-10-10 | Accept `Option<Box<$t:ty>>` in macro argument | Esteban Küber | -0/+16 | |
| Given the following code, compile successfuly: ``` macro_rules! test { ( fn fun() -> Option<Box<$t:ty>>; ) => { fn fun(x: $t) -> Option<Box<$t>> { Some(Box::new(x)) } } } test! { fn fun() -> Option<Box<i32>>; } ``` | ||||
| 2018-10-08 | parse_trait_item_ now handles interpolated blocks as function body decls | Matthew Russo | -0/+42 | |
| 2018-09-27 | Bump to 1.31.0 and bootstrap from 1.30 beta | Josh Stone | -2/+0 | |
| 2018-09-26 | Add `#![allow(..)]` as necessary to get re-migrated run-pass tests compiling ↵ | Felix S. Klock II | -0/+19 | |
| with clean stderr again. Most were added mechanically. | ||||
| 2018-09-26 | Migrate `src/test/ui/run-pass/*` back to `src/test/run-pass/`. | Felix S. Klock II | -0/+3569 | |
| Fix #54047 | ||||
