Skip to content

Commit

Permalink
Ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jackh726 committed Mar 6, 2022
1 parent 9dc05f3 commit d16ec7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/rustc_ast/src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2668,7 +2668,7 @@ pub struct Trait {
/// are concatenated together.
///
/// Take this example:
/// ```rust, ignore
/// ```ignore (only-for-syntax-highlight)
/// trait Foo {
/// type Assoc<'a, 'b> where Self: 'a, Self: 'b;
/// }
Expand All @@ -2677,9 +2677,9 @@ pub struct Trait {
/// // ^^^^^^^^^^^^^^ first where clause
/// // ^^^^^^^^^^^^^^ second where clause
/// }
/// ```
///
/// If there is no where clause, then this is `false` with `DUMMY_SP`.
/// ```
#[derive(Copy, Clone, Encodable, Decodable, Debug, Default)]
pub struct TyAliasWhereClause(pub bool, pub Span);

Expand Down

0 comments on commit d16ec7b

Please sign in to comment.