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() {}