]> git.lizzy.rs Git - rust.git/commitdiff
Add test for correct span for type
authorEsteban Küber <esteban@kuber.com.ar>
Sun, 25 Dec 2016 20:50:28 +0000 (12:50 -0800)
committerEsteban Küber <esteban@kuber.com.ar>
Wed, 4 Jan 2017 17:56:22 +0000 (09:56 -0800)
Test for #27522.

src/test/ui/span/issue-27522.rs [new file with mode: 0644]
src/test/ui/span/issue-27522.stderr [new file with mode: 0644]

diff --git a/src/test/ui/span/issue-27522.rs b/src/test/ui/span/issue-27522.rs
new file mode 100644 (file)
index 0000000..81fcb00
--- /dev/null
@@ -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() {}
diff --git a/src/test/ui/span/issue-27522.stderr b/src/test/ui/span/issue-27522.stderr
new file mode 100644 (file)
index 0000000..71130f4
--- /dev/null
@@ -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
+