about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-05-22 08:11:59 +0200
committerGeorg Brandl <georg@python.org>2016-08-07 09:36:48 +0200
commit59af2ac098ae6bb927799dfec03e9bb9934ccb8f (patch)
tree4b6aace7e68a42528832fdff3621aba7151b90e7 /src/test
parent877dfeb572e330026fc4b4114f16a411c44dc328 (diff)
downloadrust-59af2ac098ae6bb927799dfec03e9bb9934ccb8f.tar.gz
rust-59af2ac098ae6bb927799dfec03e9bb9934ccb8f.zip
typeck: suggest (x.field)(...) to call struct fields even when x is a reference
Fixes: #33784
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/issue-33784.rs46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-33784.rs b/src/test/compile-fail/issue-33784.rs
new file mode 100644
index 00000000000..4229be29473
--- /dev/null
+++ b/src/test/compile-fail/issue-33784.rs
@@ -0,0 +1,46 @@
+// 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.
+
+use std::ops::Deref;
+
+struct Obj<F> where F: FnMut() -> u32 {
+    fn_ptr: fn() -> (),
+    closure: F,
+}
+
+struct C {
+    c_fn_ptr: fn() -> (),
+}
+
+struct D(C);
+
+impl Deref for D {
+    type Target = C;
+    fn deref(&self) -> &C {
+        &self.0
+    }
+}
+
+
+fn empty() {}
+
+fn main() {
+    let o = Obj { fn_ptr: empty, closure: || 42 };
+    let p = &o;
+    p.closure(); //~ ERROR no method named `closure` found
+    //~^ NOTE use `(p.closure)(...)` if you meant to call the function stored in the `closure` field
+    let q = &p;
+    q.fn_ptr(); //~ ERROR no method named `fn_ptr` found
+    //~^ NOTE use `(q.fn_ptr)(...)` if you meant to call the function stored in the `fn_ptr` field
+    let r = D(C { c_fn_ptr: empty });
+    let s = &r;
+    s.c_fn_ptr(); //~ ERROR no method named `c_fn_ptr` found
+    //~^ NOTE use `(s.c_fn_ptr)(...)` if you meant to call the function stored in the `c_fn_ptr`
+}