Switch test marker

This commit is contained in:
Phil Ellison 2021-01-07 18:43:40 +00:00
parent 554ee6ea02
commit 7066bff9c3

View File

@ -315,7 +315,7 @@ fn div(x: i32, y: i32) -> Option<i32> {
if y == 0 {
return None;
}
x / y<|>
x / y$0
}
//- /core/lib.rs crate:core
pub mod result {