unreachable-pub

This commit is contained in:
Lukas Wirth 2024-02-07 16:30:13 +01:00
parent bc5823d5bb
commit def5a1d0c4
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
pub(crate) struct Parenthesized<T>(pub T);
pub(crate) struct Parenthesized<T>(pub(crate) T);
impl<T> syn::parse::Parse for Parenthesized<T>
where