]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-22874.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-22874.rs
CommitLineData
8bb4bdeb
XL
1struct Table {
2 rows: [[String]],
8faf50e0 3 //~^ ERROR the size for values of type
8bb4bdeb 4}
32a655c1 5
8bb4bdeb
XL
6fn f(table: &Table) -> &[String] {
7 &table.rows[0]
54a0048b 8}
32a655c1
SL
9
10fn main() {}