8 lines
86 B
Plaintext
8 lines
86 B
Plaintext
// ERROR:5:Some
|
|
unit badsome;
|
|
|
|
fn bad() -> i32 {
|
|
let x = Some(1);
|
|
return x;
|
|
}
|