mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
317 B
Rust
21 lines
317 B
Rust
//@ run-pass
|
|
|
|
const ALL_THE_NUMS: [u32; 1] = [
|
|
1
|
|
];
|
|
|
|
#[inline(never)]
|
|
fn array(i: usize) -> &'static u32 {
|
|
return &ALL_THE_NUMS[i];
|
|
}
|
|
|
|
#[inline(never)]
|
|
fn tuple_field() -> &'static u32 {
|
|
&(42,).0
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(tuple_field().to_string(), "42");
|
|
assert_eq!(array(0).to_string(), "1");
|
|
}
|