Parses a wildcard pattern: `_` # Example Input ```text _ ```
(input: syn::parse::ParseStream)
| 20 | /// _ |
| 21 | /// ``` |
| 22 | fn parse(input: syn::parse::ParseStream) -> syn::Result<Self> { |
| 23 | let _: Token![_] = input.parse()?; |
| 24 | Ok(PatternWildcard { |
| 25 | node_id: next_node_id(), |
| 26 | }) |
| 27 | } |
| 28 | } |
nothing calls this directly
no test coverage detected