From 4bfd4fb8ea3000af665de8be5f72f0712668aa05 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 3 Aug 2012 11:46:25 -0700 Subject: [PATCH] test: Remove a fixed-length string from a test --- src/test/compile-fail/non-const.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/compile-fail/non-const.rs b/src/test/compile-fail/non-const.rs index 885ac1a8f945..29f6e1f7be28 100644 --- a/src/test/compile-fail/non-const.rs +++ b/src/test/compile-fail/non-const.rs @@ -25,6 +25,5 @@ fn main() { foo(@mut 1); //~ ERROR missing `const` foo(r(1)); // this is okay now. foo(r2(@mut 1)); //~ ERROR missing `const` - foo("123"); foo({f: {mut f: 1}}); //~ ERROR missing `const` }