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