rust/tests/ui/issues/issue-2989.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
862 B
Rust
Raw Normal View History

//@ run-pass
#![allow(non_camel_case_types)]
2024-02-07 02:42:01 +00:00
trait methods { //~ WARN trait `methods` is never used
fn to_bytes(&self) -> Vec<u8>;
2012-09-01 21:09:57 +00:00
}
impl methods for () {
fn to_bytes(&self) -> Vec<u8> {
Vec::new()
2012-09-01 21:09:57 +00:00
}
}
// the position of this function is significant! - if it comes before methods
2013-05-08 17:34:47 +00:00
// then it works, if it comes after it then it doesn't!
fn to_bools(bitv: Storage) -> Vec<bool> {
(0..8).map(|i| {
2012-09-01 21:09:57 +00:00
let w = i / 64;
let b = i % 64;
let x = 1 & (bitv.storage[w] >> b);
x == 1
}).collect()
2012-09-01 21:09:57 +00:00
}
struct Storage { storage: Vec<u64> }
pub fn main() {
let bools = vec![false, false, true, false, false, true, true, false];
let bools2 = to_bools(Storage{storage: vec![0b01100100]});
2012-09-01 21:09:57 +00:00
for i in 0..8 {
println!("{} => {} vs {}", i, bools[i], bools2[i]);
2012-09-01 21:09:57 +00:00
}
assert_eq!(bools, bools2);
}