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