9 lines
88 B
Rust
9 lines
88 B
Rust
|
#![no_std]
|
||
|
|
||
|
extern crate std;
|
||
|
|
||
|
std::thread_local!(static A: usize = 30);
|
||
|
|
||
|
fn main() {
|
||
|
}
|