1error[E0603]: constant `baz` is private
2  --> $DIR/macro-local-data-key-priv.rs:8:10
3   |
4LL |     bar::baz.with(|_| ());
5   |          ^^^ private constant
6   |
7note: the constant `baz` is defined here
8  --> $DIR/macro-local-data-key-priv.rs:4:5
9   |
10LL |     thread_local!(static baz: f64 = 0.0);
11   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12   = note: this error originates in the macro `$crate::__thread_local_inner` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0603`.
17