diff options
| author | kennytm <kennytm@gmail.com> | 2017-06-20 15:15:16 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2017-06-23 15:31:53 +0800 |
| commit | 4711982314ba33cab83704c26484b501c8652774 (patch) | |
| tree | 4d66186bfcb3b47fe0ab4b58b65fd9c42dcaa431 /src/libsyntax/parse/parser.rs | |
| parent | 737962056a67329e0bc4f47d0f00c7071df16cbb (diff) | |
| download | rust-4711982314ba33cab83704c26484b501c8652774.tar.gz rust-4711982314ba33cab83704c26484b501c8652774.zip | |
Removed as many "```ignore" as possible.
Replaced by adding extra imports, adding hidden code (`# ...`), modifying examples to be runnable (sorry Homura), specifying non-Rust code, and converting to should_panic, no_run, or compile_fail. Remaining "```ignore"s received an explanation why they are being ignored.
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 0b145c54f61..851a638e148 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -4436,7 +4436,7 @@ impl<'a> Parser<'a> { /// Parses an optional `where` clause and places it in `generics`. /// - /// ```ignore + /// ```ignore (only-for-syntax-highlight) /// where T : Trait<U, V> + 'b, 'a : 'b /// ``` pub fn parse_where_clause(&mut self) -> PResult<'a, WhereClause> { |
