summary refs log tree commit diff
path: root/src/test/compile-fail/issue-2151.rs
blob: f97f57639b12164a5190de4f215c2979a6511b34 (plain)
1
2
3
4
5
6
fn main() {
    do vec::iter(fail) |i| {
        log (debug, i * 2);
        //~^ ERROR the type of this value must be known
   };
}