mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 20:00:38 +00:00
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
15 lines
228 B
Rust
15 lines
228 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
// Test that wrapping an unsized struct in an enum which gets optimised does
|
|
// not ICE.
|
|
|
|
|
|
struct Str {
|
|
f: [u8]
|
|
}
|
|
|
|
fn main() {
|
|
let str: Option<&Str> = None;
|
|
let _ = str.is_some();
|
|
}
|