Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-5883.rs
blob: 82866b355573c5bdb2ce22023d862ff814150521 [
file
] [
log
] [
blame
]
trait
A
{}
struct
Struct
{
r
:
dyn A
+
'
static
}
fn
new_struct
(
r
:
dyn A
+
'
static
//~ ERROR the size for values of type
)
->
Struct
{
//~ ERROR the size for values of type
Struct
{
r
:
r
}
}
fn
main
()
{}