We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f257df commit bc4c67dCopy full SHA for bc4c67d
src/test/compile-fail/issue-2392.rs
@@ -81,11 +81,11 @@ impl FuncContainerOuter {
81
fn run(&self) {
82
unsafe {
83
(*self.container).f1(1); //~ ERROR no method named `f1` found
84
- //~^ NOTE use `(*self.container.f1)(...)`
+ //~^ NOTE use `((*self.container).f1)(...)`
85
(*self.container).f2(1); //~ ERROR no method named `f2` found
86
- //~^ NOTE use `(*self.container.f2)(...)`
+ //~^ NOTE use `((*self.container).f2)(...)`
87
(*self.container).f3(1); //~ ERROR no method named `f3` found
88
- //~^ NOTE use `(*self.container.f3)(...)`
+ //~^ NOTE use `((*self.container).f3)(...)`
89
}
90
91
0 commit comments