We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2727f82 commit 281b050Copy full SHA for 281b050
library/std/src/sys/unix/process/process_common/tests.rs
@@ -175,7 +175,7 @@ fn unix_exit_statuses() {
175
use crate::process::*;
176
177
for exit_code in 0..=0xff {
178
- // TODO impl From<ExitCode> for ExitStatus and then test that here too;
+ // FIXME impl From<ExitCode> for ExitStatus and then test that here too;
179
// the two ExitStatus values should be the same
180
let raw_wait_status = exit_code << 8;
181
let exit_status = ExitStatus::from_raw(raw_wait_status);
0 commit comments