You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! main.rsmod other;// use other::Tr; // if uncomment this, completion fine, but a.bar() can only jump to trait declaration, can't jump to definition./// hellofnmain(){use other::Tr;let a = other::Foo::default();
a.bar();
a.b// <-- no completion tip}
trait is use nest in fn, compile fine but a.b not have completion tip.
if use other::Tr; at top, completion fine, but a.bar() can only jump to trait declaration, can't jump to Foo's definition.
The text was updated successfully, but these errors were encountered:
given the follow in file other.rs
and main.rs
trait is use nest in fn, compile fine but a.b not have completion tip.
if
use other::Tr;
at top, completion fine, but a.bar() can only jump to trait declaration, can't jump to Foo's definition.The text was updated successfully, but these errors were encountered: