Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-22874.rs
blob: c4500aacb61842fefc6a3c9100cf255a43e7387d [
file
] [
log
] [
blame
] [
edit
]
struct
Table
{
rows
:
[[
String
]],
//~^ ERROR the size for values of type
}
fn
f
(
table
:
&
Table
)
->
&[
String
]
{
&
table
.
rows
[
0
]
//~^ ERROR the size for values of type
}
fn
main
()
{}