]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-local-data-key-priv.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / ui / macros / macro-local-data-key-priv.rs
1 // check that the local data keys are private by default.
2
3 mod bar {
4     thread_local!(static baz: f64 = 0.0);
5 }
6
7 fn main() {
8     bar::baz.with(|_| ());
9     //~^ ERROR `baz` is private
10 }