564bdacece
Jesse reported not being able to reproduce this without the assert. May have to do with optimtizations.
13 lines
222 B
Rust
13 lines
222 B
Rust
// Issue #945
|
|
// error-pattern:non-exhaustive match failure
|
|
fn test_box() {
|
|
@0;
|
|
}
|
|
fn test_str() {
|
|
let res = alt false { true { "happy" } };
|
|
assert res == "happy";
|
|
}
|
|
fn main() {
|
|
test_box();
|
|
test_str();
|
|
} |