mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
avoid 'ignored' in test output
This commit is contained in:
parent
4d0e58afef
commit
f5bb704568
@ -28,7 +28,7 @@ fn expand_rule(rule: &crate::Rule, input: &tt::Subtree) -> Option<tt::Subtree> {
|
||||
///
|
||||
/// The tricky bit is dealing with repetitions (`$()*`). Consider this example:
|
||||
///
|
||||
/// ```ignore
|
||||
/// ```not_rust
|
||||
/// macro_rules! foo {
|
||||
/// ($($ i:ident $($ e:expr),*);*) => {
|
||||
/// $(fn $ i() { $($ e);*; })*
|
||||
@ -46,7 +46,7 @@ fn expand_rule(rule: &crate::Rule, input: &tt::Subtree) -> Option<tt::Subtree> {
|
||||
///
|
||||
/// For the above example, the bindings would store
|
||||
///
|
||||
/// ```ignore
|
||||
/// ```not_rust
|
||||
/// i -> [foo, bar]
|
||||
/// e -> [[1, 2, 3], [4, 5, 6]]
|
||||
/// ```
|
||||
|
Loading…
Reference in New Issue
Block a user