about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2017-01-10 20:27:38 +0900
committerGitHub <noreply@github.com>2017-01-10 20:27:38 +0900
commita81cd326c3caf08e5de629427ae4190477b87b69 (patch)
tree65b4906066dfac892cfd95bb10c67558e29b8762 /src/test
parent78c892d8659ae1cf1717b9a8a4bb407d8667f672 (diff)
parent1a4a6b9dfe828700278ed5ed7b7c9f4b30ca80ec (diff)
downloadrust-a81cd326c3caf08e5de629427ae4190477b87b69.tar.gz
rust-a81cd326c3caf08e5de629427ae4190477b87b69.zip
Rollup merge of #38606 - estebank:test-for-27522, r=petrochenkov
Add test for correct span for type

Adds test for and closes #27522.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/span/issue-27522.rs19
-rw-r--r--src/test/ui/span/issue-27522.stderr11
2 files changed, 30 insertions, 0 deletions
diff --git a/src/test/ui/span/issue-27522.rs b/src/test/ui/span/issue-27522.rs
new file mode 100644
index 00000000000..81fcb007eb4
--- /dev/null
+++ b/src/test/ui/span/issue-27522.rs
@@ -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
index 00000000000..71130f4947a
--- /dev/null
+++ b/src/test/ui/span/issue-27522.stderr
@@ -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
+