taiki-e / pin-project-lite

A lightweight version of pin-project written with declarative macros.
https://docs.rs/pin-project-lite
Apache License 2.0
216 stars 15 forks source link

local ambiguity: multiple parsing options: built-in NTs tt ('generics') or 1 other option #31

Closed fafhrd91 closed 3 years ago

fafhrd91 commented 3 years ago

got error "local ambiguity: multiple parsing options: built-in NTs tt ('generics') or 1 other option" with version 0.1.8

code that fails looks like:


pin_project_lite::pin_project! {
#[doc(hidden)]
pub struct HttpServiceResponse<
    T,
    S: ServiceFactory,
    B,
    X: ServiceFactory,
    U: ServiceFactory,
> {
...
}}
taiki-e commented 3 years ago

Published 0.1.9 which fixes this issue, thanks @fafhrd91 for the reporting!