2024-03-31 15:38:22 +02:00
|
|
|
error[E0603]: module `sys` is private
|
|
|
|
|
--> $DIR/stability-in-private-module.rs:2:18
|
2019-02-04 19:26:46 +09:00
|
|
|
|
|
2024-03-31 15:38:22 +02:00
|
|
|
LL | let _ = std::sys::os::errno();
|
|
|
|
|
| ^^^ ----- function `errno` is not publicly re-exported
|
|
|
|
|
| |
|
|
|
|
|
| private module
|
2020-01-12 16:04:03 +03:00
|
|
|
|
|
2024-03-31 15:38:22 +02:00
|
|
|
note: the module `sys` is defined here
|
|
|
|
|
--> $SRC_DIR/std/src/lib.rs:LL:COL
|
2019-02-04 19:26:46 +09:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-02-04 19:26:46 +09:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|