1
Fork 0
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 19:26:46 +09:00
fn main() {
2024-03-31 15:38:22 +02:00
let _ = std::sys::os::errno();
//~^ERROR module `sys` is private
2019-02-04 19:26:46 +09:00
}