diff --git a/rust/src/basic_block.rs b/rust/src/basic_block.rs index d12bb3e95a..67b8598762 100644 --- a/rust/src/basic_block.rs +++ b/rust/src/basic_block.rs @@ -30,7 +30,7 @@ pub struct Edge<'a, C: 'a + BlockContext> { pub branch: BranchType, pub back_edge: bool, pub source: Guard<'a, BasicBlock>, - target: Guard<'a, BasicBlock>, + pub target: Guard<'a, BasicBlock>, } impl<'a, C: 'a + fmt::Debug + BlockContext> fmt::Debug for Edge<'a, C> {