Make fields of mir::Terminator public

This commit is contained in:
ChristianSchott 2023-07-12 09:35:44 +02:00 committed by GitHub
parent 75ac37f317
commit 8f612b5352
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -323,8 +323,8 @@ impl SwitchTargets {
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Terminator {
span: MirSpan,
kind: TerminatorKind,
pub span: MirSpan,
pub kind: TerminatorKind,
}
#[derive(Debug, PartialEq, Eq, Clone)]