8 lines
115 B
Plaintext
8 lines
115 B
Plaintext
// ERROR:6:reference
|
|
unit localesc;
|
|
|
|
fn bad() -> []u8 {
|
|
let a: [2]u8 = [1 as u8, 2 as u8];
|
|
return a[..];
|
|
}
|