diff options
| author | varkor <github@varkor.com> | 2018-05-28 15:23:16 +0100 |
|---|---|---|
| committer | varkor <github@varkor.com> | 2018-06-20 12:23:07 +0100 |
| commit | 80dbe58efc7152cc9925012de0e568f36a9893a8 (patch) | |
| tree | e89f04a4b5be6b90df921ecc4506ab1e604438ea /src/libsyntax/ast.rs | |
| parent | aed530a457dd937fa633dfe52cf07811196d3173 (diff) | |
| download | rust-80dbe58efc7152cc9925012de0e568f36a9893a8.tar.gz rust-80dbe58efc7152cc9925012de0e568f36a9893a8.zip | |
Use ParamBounds in WhereRegionPredicate
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index b082cde5df7..67679468fe4 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -393,7 +393,7 @@ pub struct WhereBoundPredicate { pub struct WhereRegionPredicate { pub span: Span, pub lifetime: Lifetime, - pub bounds: Vec<Lifetime>, + pub bounds: ParamBounds, } /// An equality predicate (unsupported). |
