Pattern is exhaustive

This commit is contained in:
Ayaz Hafiz 2023-03-21 13:54:17 -04:00
parent 6ea6aef0db
commit 41541b01e6
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -883,12 +883,6 @@ fn addr_to_ast<'a, M: ReplAppMemory>(
(_, Layout::Boxed(_)) => {
unreachable!("Box layouts can only be behind a `Box.Box` application")
}
other => {
todo!(
"TODO add support for rendering pointer to {:?} in the REPL",
other
);
}
};
apply_newtypes(env, newtype_containers.into_bump_slice(), expr)
}