os-rust/tests/run-make/box-struct-no-segfault/foo.rs
2024-05-17 14:44:21 -04:00

8 lines
95 B
Rust

#![crate_type="lib"]
pub struct Foo(());
impl Foo {
pub fn new() -> Foo {
Foo(())
}
}