From e5bf6d1afa4487ae1d2bfa9c9a0f5875ec288371 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Sun, 20 Jan 2013 18:22:11 -0800 Subject: [PATCH] testsuite: Update error message, unbreak build --- src/test/compile-fail/assign-to-method.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/compile-fail/assign-to-method.rs b/src/test/compile-fail/assign-to-method.rs index 4c5f67452da..7d68d6d0c38 100644 --- a/src/test/compile-fail/assign-to-method.rs +++ b/src/test/compile-fail/assign-to-method.rs @@ -29,5 +29,4 @@ fn cat(in_x : uint, in_y : int) -> cat { fn main() { let nyan : cat = cat(52u, 99); nyan.speak = fn@() { debug!("meow"); }; //~ ERROR attempted to take value of method - //~^ ERROR mismatched types }