Skip to content

Commit 8a46e78

Browse files
author
Jorge Aparicio
committed
fix librustc test: panic is Option<PanicStrategy> now
1 parent cbb967f commit 8a46e78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2319,7 +2319,7 @@ mod tests {
23192319
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());
23202320

23212321
opts = reference.clone();
2322-
opts.cg.panic = PanicStrategy::Abort;
2322+
opts.cg.panic = Some(PanicStrategy::Abort);
23232323
assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash());
23242324
}
23252325

0 commit comments

Comments
 (0)