We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f3396 commit b2d83e2Copy full SHA for b2d83e2
src/bit_machine/mod.rs
@@ -623,7 +623,6 @@ impl From<JetFailed> for ExecutionError {
623
624
#[cfg(test)]
625
mod tests {
626
- #[cfg(feature = "elements")]
627
use super::*;
628
629
#[cfg(feature = "elements")]
@@ -710,4 +709,20 @@ mod tests {
710
709
);
711
assert_eq!(res.unwrap(), Value::unit());
712
}
+
713
+ #[test]
714
+ fn crash_regression2() {
715
+ use crate::node::{CoreConstructible as _, JetConstructible as _};
716
717
+ type Node = Arc<crate::ConstructNode<crate::jet::Core>>;
718
719
+ let mut bomb = Node::jet(
720
+ &crate::types::Context::new(),
721
+ crate::jet::Core::Ch8, // arbitrary jet with nonzero output size
722
+ );
723
+ for _ in 0..100 {
724
+ bomb = Node::pair(&bomb, &bomb).unwrap();
725
+ }
726
+ let _ = bomb.finalize_pruned(&());
727
728
0 commit comments