mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
274 B
Rust
17 lines
274 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
fn ret() -> u32 {
|
|
static x: u32 = 10;
|
|
x & if true { 10u32 } else { 20u32 } & x
|
|
}
|
|
|
|
fn ret2() -> &'static u32 {
|
|
static x: u32 = 10;
|
|
if true { 10u32; } else { 20u32; }
|
|
&x
|
|
}
|
|
|
|
fn main() {}
|