Skip to content

Commit

Permalink
Add test for correct span for type
Browse files Browse the repository at this point in the history
Test for #27522.
  • Loading branch information
estebank committed Dec 25, 2016
1 parent c217ab6 commit 3caf478
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:16
|
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 3caf478

Please sign in to comment.