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