2018-03-05 02:35:58 -06:00
|
|
|
#![feature(dyn_trait)]
|
|
|
|
fn main() {
|
|
|
|
// checks rustfmt doesn't remove dyn
|
|
|
|
trait MyTrait {
|
|
|
|
fn method(&self) -> u64;
|
|
|
|
}
|
|
|
|
fn f1(a: Box<dyn MyTrait>) {}
|
|
|
|
|
|
|
|
// checks if line wrap works correctly
|
2018-03-09 23:29:01 -06:00
|
|
|
trait Very_______________________Long__________________Name_______________________________Trait
|
|
|
|
{
|
2018-03-05 02:35:58 -06:00
|
|
|
fn method(&self) -> u64;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn f2(
|
|
|
|
a: Box<
|
|
|
|
dyn Very_______________________Long__________________Name____________________Trait
|
|
|
|
+ 'static,
|
|
|
|
>,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
}
|