summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-local-data-key-priv.rs
blob: 2e4f88f9aa9d5a16b34a2518f5af7b8ea4822ea4 (plain)
1
2
3
4
5
6
7
8
9
10
// check that the local data keys are private by default.

mod bar {
    thread_local!(static baz: f64 = 0.0);
}

fn main() {
    bar::baz.with(|_| ());
    //~^ ERROR `baz` is private
}