blob: 64147e11f1c0c90a82336791eeaf38822c18767d [file] [log] [blame]
// run-pass
struct J { j: isize }
pub fn main() {
let i: Box<_> = Box::new(J {
j: 100
});
assert_eq!(i.j, 100);
}