Fix typo in `VisitorResult`

This commit is contained in:
Jason Newcomb 2024-03-08 23:20:29 -05:00
parent a655e648a9
commit 564837e23d
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ impl VisitorResult for () {
type Residual = !;
#[cfg(not(feature = "nightly"))]
type Residual = core::ops::Infallible;
type Residual = core::convert::Infallible;
fn output() -> Self {}
fn from_residual(_: Self::Residual) -> Self {}