fix(tvix/castore): correctly flag unreachable code

Change-Id: Id09afa4b77c3c70fb5695f253f6df4aa88b61e19
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10113
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
sterni 2023-11-24 16:53:01 +01:00
parent c5961e7774
commit 875bb26fc3

View file

@ -209,5 +209,5 @@ pub async fn ingest_path<P: AsRef<Path> + Debug>(
}
}
// unreachable, we already bailed out before if root doesn't exist.
panic!("tvix bug")
unreachable!()
}