]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-95533.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / macros / issue-95533.rs
1 // check-pass
2
3 #![no_implicit_prelude]
4 // the macro should not rely on the prelude being imported
5 ::std::thread_local! { static P: () = (); }
6 ::std::thread_local! { static Q: () = const { () }; }
7
8 fn main () {}