2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
|
2015-01-08 22:02:42 +11:00
|
|
|
static x: &'static usize = &1;
|
|
|
|
|
static y: usize = *x;
|
2018-05-29 01:38:18 +01:00
|
|
|
|
2014-10-26 00:07:41 +02:00
|
|
|
fn main() {}
|