blob: 85a5fec16172873e5d5032df5bec63b4d3783e95 [file] [log] [blame]
//@ 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() {}