blob: 729a5819ae4e5d9a02ab46c2c741208f7a11b6fb [file] [log] [blame] [edit]
//! Regression test for https://github.com/rust-lang/rust/issues/2708
//@ run-pass
#![allow(dead_code)]
#![allow(non_snake_case)]
struct Font {
fontbuf: usize,
cairo_font: usize,
font_dtor: usize,
}
impl Drop for Font {
fn drop(&mut self) {}
}
fn Font() -> Font {
Font { fontbuf: 0, cairo_font: 0, font_dtor: 0 }
}
pub fn main() {
let _f: Box<_> = Box::new(Font());
}