parent
d40d01bd0e
commit
1a4a6b9dfe
19
src/test/ui/span/issue-27522.rs
Normal file
19
src/test/ui/span/issue-27522.rs
Normal file
@ -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
src/test/ui/span/issue-27522.stderr
Normal file
11
src/test/ui/span/issue-27522.stderr
Normal file
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user