mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
31 lines
389 B
Rust
31 lines
389 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_snake_case)]
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
|
|
|
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());
|
|
}
|