2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2012-09-01 16:09:57 -05:00
|
|
|
trait methods {
|
2014-03-05 16:02:44 -06:00
|
|
|
fn to_bytes(&self) -> Vec<u8> ;
|
2012-09-01 16:09:57 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl methods for () {
|
2014-03-05 16:02:44 -06:00
|
|
|
fn to_bytes(&self) -> Vec<u8> {
|
2015-01-02 01:53:35 -06:00
|
|
|
Vec::new()
|
2012-09-01 16:09:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// the position of this function is significant! - if it comes before methods
|
2013-05-08 12:34:47 -05:00
|
|
|
// then it works, if it comes after it then it doesn't!
|
2014-03-05 16:02:44 -06:00
|
|
|
fn to_bools(bitv: Storage) -> Vec<bool> {
|
2015-03-03 02:42:26 -06:00
|
|
|
(0..8).map(|i| {
|
2012-09-01 16:09:57 -05:00
|
|
|
let w = i / 64;
|
|
|
|
let b = i % 64;
|
2015-03-03 02:42:26 -06:00
|
|
|
let x = 1 & (bitv.storage[w] >> b);
|
|
|
|
x == 1
|
2015-01-02 01:53:35 -06:00
|
|
|
}).collect()
|
2012-09-01 16:09:57 -05:00
|
|
|
}
|
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
struct Storage { storage: Vec<u64> }
|
2013-01-26 00:46:32 -06:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2016-10-29 16:54:04 -05:00
|
|
|
let bools = vec![false, false, true, false, false, true, true, false];
|
|
|
|
let bools2 = to_bools(Storage{storage: vec![0b01100100]});
|
2012-09-01 16:09:57 -05:00
|
|
|
|
2015-03-03 02:42:26 -06:00
|
|
|
for i in 0..8 {
|
2014-10-15 01:05:01 -05:00
|
|
|
println!("{} => {} vs {}", i, bools[i], bools2[i]);
|
2012-09-01 16:09:57 -05:00
|
|
|
}
|
|
|
|
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(bools, bools2);
|
2012-10-12 14:32:36 -05:00
|
|
|
}
|