Files
rust/tests/ui/stability-attribute/stability-in-private-module.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
464 B
Plaintext
Raw Normal View History

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
|
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
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`.