Skip to content

Commit

Permalink
Rollup merge of rust-lang#38606 - estebank:test-for-27522, r=petroche…
Browse files Browse the repository at this point in the history
…nkov

Add test for correct span for type

Adds test for and closes rust-lang#27522.
  • Loading branch information
sanxiyn authored Jan 10, 2017
2 parents 78c892d + 1a4a6b9 commit a81cd32
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/test/ui/span/issue-27522.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright 2016 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.

// Point at correct span for self type

struct SomeType {}

trait Foo {
fn handler(self: &SomeType);
}

fn main() {}
11 changes: 11 additions & 0 deletions src/test/ui/span/issue-27522.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
error[E0308]: mismatched method receiver
--> $DIR/issue-27522.rs:16:22
|
16 | fn handler(self: &SomeType);
| ^^^^^^^^^ expected Self, found struct `SomeType`
|
= note: expected type `&Self`
= note: found type `&SomeType`

error: aborting due to previous error

0 comments on commit a81cd32

Please sign in to comment.