9 lines
166 B
Rust
9 lines
166 B
Rust
|
// This checks that the const-eval ICE in issue #100878 does not recur.
|
||
|
//
|
||
|
// build-pass
|
||
|
pub fn bitshift_data(data: [u8; 1]) -> u8 {
|
||
|
data[0] << 8
|
||
|
}
|
||
|
|
||
|
fn main() {}
|