summary refs log tree commit diff
path: root/src/test/ui/feature-gates/thread-local-const-init.rs
blob: 6584ffa7cf949f91833cdf9e69b55a851bd8ba74 (plain)
1
2
3
4
thread_local!(static X: u32 = const { 0 });
//~^ ERROR: use of unstable library feature 'thread_local_const_init'

fn main() {}