]> 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 6e6092fceab2bd7e0654a1e8587453f075db905e..17cf36b73f6432487d7ae31bf414bc0c511ce51e 100644 (file)
@@ -1,13 +1,31 @@
-// error-pattern:missing method `eat`
-iface animal {
-  fn 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(&self);
+}
+
+struct cat {
+  meows: uint,
 }
 
-class cat implements animal {
-  let meows: uint;
-  new(in_x : uint) { self.meows = in_x; }
+impl animal for cat {
+    //~^ ERROR not all trait items implemented, missing: `eat`
+}
+
+fn cat(in_x : uint) -> cat {
+    cat {
+        meows: in_x
+    }
 }
 
 fn main() {
   let nyan = cat(0u);
-}
\ No newline at end of file
+}