As seen in [*src/test/ui/associated-consts/assoc-const.rs*](https://github.com/rust-lang/rust/blob/737ef08ea066cbdc9f4b93373b1a1a108e6691ab/src/test/ui/associated-consts/assoc-const.rs#L18): ```rust fn foo<F: Foo<N = 3usize>>() {} ``` Syn can't currently parse this. ```console error: expected one of: `for`, parentheses, `fn`, `unsafe`, `extern`, identifier, `::`, `<`, square brackets, `*`, `&`, `!`, `impl`, `_`, lifetime --> src/test/ui/associated-consts/assoc-const.rs:18:17 | 18 | fn foo<F: Foo<N=3usize>>() {} | ^^^^^^ ```