mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
268 B
Rust
17 lines
268 B
Rust
// aux-build:issue-17718-const-privacy.rs
|
|
|
|
extern crate issue_17718_const_privacy as other;
|
|
|
|
use a::B; //~ ERROR: constant `B` is private
|
|
use other::{
|
|
FOO,
|
|
BAR, //~ ERROR: constant `BAR` is private
|
|
FOO2,
|
|
};
|
|
|
|
mod a {
|
|
const B: usize = 3;
|
|
}
|
|
|
|
fn main() {}
|