about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorvarkor <github@varkor.com>2018-05-28 15:23:16 +0100
committervarkor <github@varkor.com>2018-06-20 12:23:07 +0100
commit80dbe58efc7152cc9925012de0e568f36a9893a8 (patch)
treee89f04a4b5be6b90df921ecc4506ab1e604438ea /src/libsyntax/ast.rs
parentaed530a457dd937fa633dfe52cf07811196d3173 (diff)
downloadrust-80dbe58efc7152cc9925012de0e568f36a9893a8.tar.gz
rust-80dbe58efc7152cc9925012de0e568f36a9893a8.zip
Use ParamBounds in WhereRegionPredicate
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs2
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).