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.
struct S(u8, String); fn f(s: S) { s.1.$0 }
This incorrectly lists the methods of u8, not of String.
u8
String
The same happens for the corresponding (u8, String) tuple type instead of S.
(u8, String)
S