]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/class-method-missing.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / test / compile-fail / class-method-missing.rs
index 642a26e6e9ef0299700c68964e5952b51b328a78..17cf36b73f6432487d7ae31bf414bc0c511ce51e 100644 (file)
@@ -1,13 +1,23 @@
-// error-pattern:missing method `eat`
+// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
 trait animal {
-  fn eat();
+  fn eat(&self);
 }
 
 struct cat {
   meows: uint,
 }
 
-impl cat : animal {
+impl animal for cat {
+    //~^ ERROR not all trait items implemented, missing: `eat`
 }
 
 fn cat(in_x : uint) -> cat {
@@ -18,4 +28,4 @@ fn cat(in_x : uint) -> cat {
 
 fn main() {
   let nyan = cat(0u);
-}
\ No newline at end of file
+}