SYMBOL INDEX (38 symbols across 10 files) FILE: src/expand.rs function inherent (line 7) | pub fn inherent(mut input: TraitImpl) -> TokenStream { function fwd_method (line 70) | fn fwd_method( FILE: src/lib.rs function inherent (line 97) | pub fn inherent(args: TokenStream, input: TokenStream) -> TokenStream { FILE: src/parse.rs type TraitImpl (line 8) | pub struct TraitImpl { method parse (line 22) | fn parse(input: ParseStream) -> Result { method to_tokens (line 48) | fn to_tokens(&self, tokens: &mut TokenStream) { FILE: src/verbatim.rs type VerbatimFn (line 6) | pub struct VerbatimFn { method parse (line 15) | fn parse(input: ParseStream) -> Result { method to_tokens (line 27) | fn to_tokens(&self, tokens: &mut TokenStream) { FILE: tests/compiletest.rs function ui (line 4) | fn ui() { FILE: tests/test.rs type Trait (line 4) | trait Trait { method f (line 5) | fn f(self); method g (line 7) | fn g(&self) {} method a (line 10) | async fn a(&self); method f (line 17) | pub fn f(self) {} method g (line 18) | pub fn g(&self); method a (line 21) | pub async fn a(&self) {} type Struct (line 13) | pub struct Struct; function test (line 26) | fn test() { function test_async (line 35) | fn test_async() { FILE: tests/ui/associated-type.rs type Trait (line 3) | pub trait Trait { method f (line 5) | fn f() -> Self::Assoc; type Assoc (line 12) | type Assoc = (); method f (line 15) | fn f() -> Self::Assoc {} type Struct (line 8) | pub struct Struct; function main (line 18) | fn main() {} FILE: tests/ui/blanket-impl.rs type A (line 3) | trait A { method a (line 4) | fn a(&self); method a (line 9) | fn a(&self) {} function main (line 12) | fn main() {} FILE: tests/ui/not-trait-impl.rs type Struct (line 3) | struct Struct; method f (line 7) | fn f() {} function main (line 10) | fn main() {} FILE: tests/ui/not-visible.rs type Trait (line 4) | trait Trait { method f (line 5) | fn f(); method f (line 12) | fn f() {} type Struct (line 8) | pub struct Struct; function main (line 16) | fn main() {