rust/tests/ui/issues/issue-15756.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
226 B
Rust
Raw Normal View History

2014-12-07 09:22:06 -06:00
use std::slice::Chunks;
2014-12-30 12:51:18 -06:00
use std::slice::ChunksMut;
2014-12-07 09:22:06 -06:00
2014-12-30 12:51:18 -06:00
fn dft_iter<'a, T>(arg1: Chunks<'a,T>, arg2: ChunksMut<'a,T>)
2014-12-07 09:22:06 -06:00
{
for
2015-01-07 18:26:00 -06:00
&mut something
2018-07-10 16:10:13 -05:00
//~^ ERROR the size for values of type
2014-12-07 09:22:06 -06:00
in arg2
{
}
}
fn main() {}