Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unsized-locals
/
issue-50940.rs
blob: 7ba809b7e83e3a3117f3fca835330481fb1c30cf [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
struct
A
<
X
:
?
Sized
>(
X
);
A
as
fn
(
str
)
->
A
<
str
>;
//~^ERROR the size for values of type `str` cannot be known at compilation time
}