Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
issues
/
issue-22874.rs
blob: c4500aacb61842fefc6a3c9100cf255a43e7387d [
file
]
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
()
{}