You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
228 B
Rust

use std::thread;
#[macro_use] extern crate lazy_static;
lazy_static! {
static ref A: Vec<u32> = {
vec![1, 2, 3]
};
}
fn main() {
thread::spawn(|| {
A[1];
});
thread::spawn(|| {
A[2];
});
}