diff options
| author | Kevin Butler <haqkrs@gmail.com> | 2015-11-03 16:34:11 +0000 |
|---|---|---|
| committer | Kevin Butler <haqkrs@gmail.com> | 2015-11-12 05:16:57 +0000 |
| commit | d64e551248d73ca9657952e983d3d178d85d3608 (patch) | |
| tree | 11dcbfcc63cac5274f3cd92bdbe7af1d19b863f9 /src/libsyntax/parse/parser.rs | |
| parent | a17f81b4b796123aa4e204145cca870fa270cf81 (diff) | |
| download | rust-d64e551248d73ca9657952e983d3d178d85d3608.tar.gz rust-d64e551248d73ca9657952e983d3d178d85d3608.zip | |
libsyntax: deny warnings in doctests
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 fde1058a785..1e38eebec5d 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -3965,7 +3965,7 @@ impl<'a> Parser<'a> { /// Parses an optional `where` clause and places it in `generics`. /// - /// ``` + /// ```ignore /// where T : Trait<U, V> + 'b, 'a : 'b /// ``` pub fn parse_where_clause(&mut self) -> PResult<ast::WhereClause> { |
