From 6076fef6bd7af7fc34cb9adf8c2b3fa1a35c50bb Mon Sep 17 00:00:00 2001 From: Luqman Aden Date: Tue, 11 Oct 2016 20:42:26 -0400 Subject: [PATCH] ExprAssignable does not need the original Expr so let's just remove outdated FIXME. --- src/librustc/infer/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/librustc/infer/mod.rs b/src/librustc/infer/mod.rs index ebafd206e26e..8f4a12e03975 100644 --- a/src/librustc/infer/mod.rs +++ b/src/librustc/infer/mod.rs @@ -184,7 +184,6 @@ pub enum TypeOrigin { MethodCompatCheck(Span), // Checking that this expression can be assigned where it needs to be - // FIXME(eddyb) #11161 is the original Expr required? ExprAssignable(Span), // Relating trait type parameters to those found in impl etc