Skip to content

Commit f874e10

Browse files
committed
Fix import order
1 parent 1ba01de commit f874e10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/os/unix/net/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ use crate::io::prelude::*;
33
use crate::io::{self, ErrorKind, IoSlice, IoSliceMut};
44
#[cfg(target_os = "android")]
55
use crate::os::android::net::{SocketAddrExt, UnixSocketExt};
6-
#[cfg(target_os = "linux")]
7-
use crate::os::linux::net::{SocketAddrExt, UnixSocketExt};
86
#[cfg(target_os = "cygwin")]
97
use crate::os::cygwin::net::{SocketAddrExt, UnixSocketExt};
8+
#[cfg(target_os = "linux")]
9+
use crate::os::linux::net::{SocketAddrExt, UnixSocketExt};
1010
#[cfg(any(target_os = "android", target_os = "linux"))]
1111
use crate::os::unix::io::AsRawFd;
1212
use crate::test_helpers::tmpdir;

0 commit comments

Comments
 (0)