2014-11-26 07:12:18 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2014-11-26 07:12:18 -06:00
|
|
|
// Check that parenthetical notation is feature-gated except with the
|
|
|
|
// `Fn` traits.
|
2012-07-27 16:51:46 -05:00
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
use std::marker;
|
|
|
|
|
2015-01-12 09:27:25 -06:00
|
|
|
trait Foo<A> {
|
|
|
|
type Output;
|
2015-02-12 09:29:52 -06:00
|
|
|
|
|
|
|
fn dummy(&self, a: A) { }
|
2014-11-26 07:12:18 -06:00
|
|
|
}
|
2012-07-27 16:51:46 -05:00
|
|
|
|
|
|
|
fn main() {
|
2015-01-08 04:54:35 -06:00
|
|
|
let x: Box<Foo(isize)>;
|
2015-07-28 11:21:24 -05:00
|
|
|
//~^ ERROR parenthetical notation is only stable when used with `Fn`-family
|
2014-11-26 07:12:18 -06:00
|
|
|
|
|
|
|
// No errors with these:
|
2015-01-08 04:54:35 -06:00
|
|
|
let x: Box<Fn(isize)>;
|
|
|
|
let x: Box<FnMut(isize)>;
|
|
|
|
let x: Box<FnOnce(isize)>;
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|