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
116 B
Rust
Raw Normal View History

2019-02-04 10:26:46 +00:00
fn main() {
let _ = std::thread::thread_info::current_thread();
//~^ERROR module `thread_info` is private
}