about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorDonato Sciarra <sciarp@gmail.com>2018-09-17 23:37:20 +0200
committerDonato Sciarra <sciarp@gmail.com>2018-09-29 21:36:58 +0200
commit0390736dce86cb97880e3eb144de9ec5759bec14 (patch)
tree862190a5888b452c7ceae0082fcb413e3a73db32 /src/test
parenteb50e75729bce449272ffb3bfbca2f7234f2ae13 (diff)
downloadrust-0390736dce86cb97880e3eb144de9ec5759bec14.tar.gz
rust-0390736dce86cb97880e3eb144de9ec5759bec14.zip
Improve ux when calling associated functions with dot notation
Issue: 22692
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/resolve/issue-22692.rs13
-rw-r--r--src/test/ui/resolve/issue-22692.stderr11
2 files changed, 24 insertions, 0 deletions
diff --git a/src/test/ui/resolve/issue-22692.rs b/src/test/ui/resolve/issue-22692.rs
new file mode 100644
index 00000000000..06648c59953
--- /dev/null
+++ b/src/test/ui/resolve/issue-22692.rs
@@ -0,0 +1,13 @@
+// Copyright 2018 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.
+
+fn main() {
+    let _ = String.new();
+}
diff --git a/src/test/ui/resolve/issue-22692.stderr b/src/test/ui/resolve/issue-22692.stderr
new file mode 100644
index 00000000000..ecdd4ff855f
--- /dev/null
+++ b/src/test/ui/resolve/issue-22692.stderr
@@ -0,0 +1,11 @@
+error[E0423]: expected value, found struct `String`
+  --> $DIR/issue-22692.rs:12:13
+   |
+LL |     let _ = String.new();
+   |             ^^^^^^----
+   |             |
+   |             help: use `::` to access an associated function: `String::new`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0423`.