8 lines
96 B
Rust
Raw Normal View History

2018-08-13 18:23:14 +03:00
trait Runnable {
fn handler();
}
trait TraitWithExpr {
fn fn_with_expr(x: [i32; 1]);
}