]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/trait-test-2.rs
5e0340ce4f5c16093af2806c7df21610538ba7e4
[rust.git] / src / test / compile-fail / trait-test-2.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 trait bar { fn dup(&self) -> Self; fn blah<X>(&self); }
13 impl bar for int { fn dup(&self) -> int { *self } fn blah<X>(&self) {} }
14 impl bar for uint { fn dup(&self) -> uint { *self } fn blah<X>(&self) {} }
15
16 fn main() {
17     10i.dup::<int>(); //~ ERROR does not take type parameters
18     10i.blah::<int, int>(); //~ ERROR incorrect number of type parameters
19     (box 10 as Box<bar>).dup(); //~ ERROR contains a self-type
20 }