summaryrefslogtreecommitdiffstats
path: root/src/test/ui/privacy/issue-17718-const-privacy.rs
blob: 6ab3a60df8742056438511f3a6e29ab3534d4219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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() {}