rust/src/test/compile-fail/fn-trait-formatting.rs

39 lines
1.3 KiB
Rust
Raw Normal View History

// 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.
#![feature(unboxed_closures)]
2015-01-07 20:53:58 -06:00
#![feature(box_syntax)]
2014-12-05 20:12:25 -06:00
fn needs_fn<F>(x: F) where F: Fn(isize) -> isize {}
fn main() {
2015-01-12 00:01:44 -06:00
let _: () = (box |:_: isize| {}) as Box<FnOnce(isize)>;
//~^ ERROR object-safe
//~| ERROR mismatched types
//~| expected `()`
//~| found `Box<core::ops::FnOnce(isize)>`
//~| expected ()
//~| found box
2014-12-05 20:12:25 -06:00
let _: () = (box |&:_: isize, isize| {}) as Box<Fn(isize, isize)>;
2015-01-12 00:01:44 -06:00
//~^ ERROR mismatched types
//~| expected `()`
//~| found `Box<core::ops::Fn(isize, isize)>`
//~| expected ()
//~| found box
2014-12-05 20:12:25 -06:00
let _: () = (box |&mut:| -> isize unimplemented!()) as Box<FnMut() -> isize>;
2015-01-12 00:01:44 -06:00
//~^ ERROR mismatched types
//~| expected `()`
//~| found `Box<core::ops::FnMut() -> isize>`
//~| expected ()
//~| found box
needs_fn(1is); //~ ERROR `core::ops::Fn(isize) -> isize`
}