]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/method-call-err-msg.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / compile-fail / method-call-err-msg.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2012-2014 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// Test that parameter cardinality or missing method error gets span exactly.
12
13pub struct Foo;
14impl Foo {
15 fn zero(self) -> Foo { self }
16 fn one(self, _: isize) -> Foo { self }
17 fn two(self, _: isize, _: isize) -> Foo { self }
18}
19
20fn main() {
21 let x = Foo;
22 x.zero(0) //~ ERROR this function takes 0 parameters but 1 parameter was supplied
5bcae85e 23 //~^ NOTE expected 0 parameters
1a4d82fc 24 .one() //~ ERROR this function takes 1 parameter but 0 parameters were supplied
3157f602 25 //~^ NOTE the following parameter type was expected
5bcae85e 26 //~| NOTE expected 1 parameter
1a4d82fc 27 .two(0); //~ ERROR this function takes 2 parameters but 1 parameter was supplied
3157f602 28 //~^ NOTE the following parameter types were expected
5bcae85e 29 //~| NOTE expected 2 parameters
1a4d82fc
JJ
30
31 let y = Foo;
32 y.zero()
d9579d0f 33 .take() //~ ERROR no method named `take` found for type `Foo` in the current scope
3157f602 34 //~^ NOTE the method `take` exists but the following trait bounds were not satisfied
1a4d82fc
JJ
35 .one(0);
36}