From 3246723bf79ffc20e91936440cebc71ddcfd0a66 Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Fri, 22 Jun 2012 15:35:06 -0700 Subject: [PATCH] Adding an issue number to vec-add.rs --- src/test/compile-fail/vec-add.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/compile-fail/vec-add.rs b/src/test/compile-fail/vec-add.rs index 6d18bf9e2f8..6642112d998 100644 --- a/src/test/compile-fail/vec-add.rs +++ b/src/test/compile-fail/vec-add.rs @@ -1,8 +1,8 @@ // xfail-test -// FIXME: + should allow immutable or mutable vectors on the right -// hand side in all cases. We are getting compiler errors about this -// now, so I'm xfailing the test for now. -eholk +// FIXME (Issue #2711): + should allow immutable or mutable vectors on +// the right hand side in all cases. We are getting compiler errors +// about this now, so I'm xfailing the test for now. -eholk fn add(i: [int], m: [mut int], c: [const int]) {