summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2015-08-07 09:30:19 -0400
committerNiko Matsakis <niko@alum.mit.edu>2015-08-12 17:57:57 -0400
commitb1963154a10fd22d16a5eddd751046cc897e909c (patch)
tree04b10a6fbc7ca80c3202bb49d1cc178a7e8d4021 /src/libsyntax
parent928955296e28cea5045fb726d6e3fb47780f8c48 (diff)
downloadrust-b1963154a10fd22d16a5eddd751046cc897e909c.tar.gz
rust-b1963154a10fd22d16a5eddd751046cc897e909c.zip
Add two new kinds of predicates, WellFormed and ObjectSafe.
Diffstat (limited to 'src/libsyntax')
-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 bcc90dc47d9..08c6dcc7f87 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -475,7 +475,7 @@ pub enum WherePredicate {
     /// A lifetime predicate, e.g. `'a: 'b+'c`
     RegionPredicate(WhereRegionPredicate),
     /// An equality predicate (unsupported)
-    EqPredicate(WhereEqPredicate)
+    EqPredicate(WhereEqPredicate),
 }
 
 /// A type bound, eg `for<'c> Foo: Send+Clone+'c`