2014-12-07 09:22:06 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
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
|
2016-04-05 14:56:23 -05:00
|
|
|
//~^ ERROR `[T]: std::marker::Sized` is not satisfied
|
2014-12-07 09:22:06 -06:00
|
|
|
in arg2
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|