Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
run-make
/
box-struct-no-segfault
/
foo.rs
blob: 0897b74b3567f3239a301238021c8e7f0e78502d [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
pub
struct
Foo
(());
impl
Foo
{
pub
fn
new
()
->
Foo
{
Foo
(())
}
}