Closed thanasis2028 closed 2 years ago
The recently implemented generic parser was not working properly when any trait bounds were specified at the trait definition (instead of using a where clause), so like this:
where
struct Something<T: Trait> { /* ... */ }
This commit fixes the aforementioned bug.
The recently implemented generic parser was not working properly when any trait bounds were specified at the trait definition (instead of using a
where
clause), so like this:This commit fixes the aforementioned bug.