]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/trait-test-2.rs
Make RFC 1214 warnings into errors, and rip out the "warn or err"
[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 #![feature(box_syntax)]
12
13 trait bar { fn dup(&self) -> Self; fn blah<X>(&self); }
14 impl bar for i32 { fn dup(&self) -> i32 { *self } fn blah<X>(&self) {} }
15 impl bar for u32 { fn dup(&self) -> u32 { *self } fn blah<X>(&self) {} }
16
17 fn main() {
18     10.dup::<i32>(); //~ ERROR does not take type parameters
19     10.blah::<i32, i32>();
20     //~^ ERROR incorrect number of type parameters given for this method: expected 1, found 2
21     (box 10 as Box<bar>).dup();
22     //~^ ERROR E0038
23     //~| ERROR E0038
24     //~| ERROR E0277
25 }