2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-04-10 08:47:53 -05:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-02-07 13:08:32 -06:00
|
|
|
// ignore-android: FIXME(#9116) Bus error
|
2013-09-16 09:10:01 -05:00
|
|
|
|
2013-10-16 20:34:01 -05:00
|
|
|
use std::mem;
|
2013-05-24 21:35:29 -05:00
|
|
|
|
2013-04-10 08:47:53 -05:00
|
|
|
#[packed]
|
2014-05-29 19:45:07 -05:00
|
|
|
#[deriving(PartialEq, Show)]
|
2013-04-10 08:47:53 -05:00
|
|
|
struct Foo {
|
|
|
|
bar: u8,
|
|
|
|
baz: u64
|
|
|
|
}
|
|
|
|
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() {
|
2013-04-10 08:47:53 -05:00
|
|
|
let foos = [Foo { bar: 1, baz: 2 }, .. 10];
|
|
|
|
|
2013-10-16 20:34:01 -05:00
|
|
|
assert_eq!(mem::size_of::<[Foo, .. 10]>(), 90);
|
2013-04-10 08:47:53 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in range(0u, 10) {
|
2013-04-10 08:47:53 -05:00
|
|
|
assert_eq!(foos[i], Foo { bar: 1, baz: 2});
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for &foo in foos.iter() {
|
2013-04-10 08:47:53 -05:00
|
|
|
assert_eq!(foo, Foo { bar: 1, baz: 2 });
|
|
|
|
}
|
|
|
|
}
|