mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
avoid 'ignored' in test output
This commit is contained in:
parent
4d0e58afef
commit
f5bb704568
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
/// The tricky bit is dealing with repetitions (`$()*`). Consider this example:
|
||||||
///
|
///
|
||||||
/// ```ignore
|
/// ```not_rust
|
||||||
/// macro_rules! foo {
|
/// macro_rules! foo {
|
||||||
/// ($($ i:ident $($ e:expr),*);*) => {
|
/// ($($ i:ident $($ e:expr),*);*) => {
|
||||||
/// $(fn $ i() { $($ e);*; })*
|
/// $(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
|
/// For the above example, the bindings would store
|
||||||
///
|
///
|
||||||
/// ```ignore
|
/// ```not_rust
|
||||||
/// i -> [foo, bar]
|
/// i -> [foo, bar]
|
||||||
/// e -> [[1, 2, 3], [4, 5, 6]]
|
/// e -> [[1, 2, 3], [4, 5, 6]]
|
||||||
/// ```
|
/// ```
|
||||||
|
|
Loading…
Reference in a new issue