rust/tests/ui/stability-attribute/stability-in-private-module.rs

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

5 lines
87 B
Rust
Raw Normal View History

2019-02-04 10:26:46 +00:00
fn main() {
2024-03-31 13:38:22 +00:00
let _ = std::sys::os::errno();
//~^ERROR module `sys` is private
2019-02-04 10:26:46 +00:00
}