rust/tests/ui/resolve/struct-function-same-name-2708.rs
2026-02-04 04:45:52 +00:00

23 lines
397 B
Rust

//! 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());
}