2018-02-23 01:09:20 -06:00
|
|
|
// rustfmt-indent_style: Visual
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode, rule: &Rule, args: &[Arg], shape: &Shape)
|
|
|
|
where T: FOo,
|
|
|
|
U: Bar
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode, rule: &Rule, args: &[Arg], shape: &Shape)
|
|
|
|
where T: FOo
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
|
|
|
shape: &Shape,
|
|
|
|
shape: &Shape)
|
|
|
|
where T: FOo,
|
|
|
|
U: Bar
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
|
|
|
shape: &Shape,
|
|
|
|
shape: &Shape)
|
|
|
|
where T: FOo
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
|
|
|
shape: &Shape)
|
|
|
|
-> Option<String>
|
|
|
|
where T: FOo,
|
|
|
|
U: Bar
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
|
|
|
shape: &Shape)
|
|
|
|
-> Option<String>
|
|
|
|
where T: FOo
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
2015-11-27 02:25:31 -06:00
|
|
|
pub trait Test {
|
|
|
|
fn very_long_method_name<F>(self, f: F) -> MyVeryLongReturnType
|
2018-02-23 01:09:20 -06:00
|
|
|
where F: FnMut(Self::Item) -> bool;
|
|
|
|
|
2017-06-11 23:01:41 -05:00
|
|
|
fn exactly_100_chars1<F>(self, f: F) -> MyVeryLongReturnType
|
2018-02-23 01:09:20 -06:00
|
|
|
where F: FnMut(Self::Item) -> bool;
|
2015-11-27 02:25:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn very_long_function_name<F>(very_long_argument: F) -> MyVeryLongReturnType
|
2018-02-23 01:09:20 -06:00
|
|
|
where F: FnMut(Self::Item) -> bool
|
2015-11-27 02:25:31 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
struct VeryLongTupleStructName<A, B, C, D, E>(LongLongTypename, LongLongTypename, i32, i32)
|
2018-02-23 01:09:20 -06:00
|
|
|
where A: LongTrait;
|
2015-11-27 02:25:31 -06:00
|
|
|
|
2018-02-23 01:09:20 -06:00
|
|
|
struct Exactly100CharsToSemicolon<A, B, C, D, E>(LongLongTypename, i32, i32) where A: LongTrait1234;
|
2015-11-27 02:25:31 -06:00
|
|
|
|
|
|
|
struct AlwaysOnNextLine<LongLongTypename, LongTypename, A, B, C, D, E, F>
|
2018-02-23 01:09:20 -06:00
|
|
|
where A: LongTrait
|
2015-11-27 02:25:31 -06:00
|
|
|
{
|
|
|
|
x: i32,
|
|
|
|
}
|
2018-02-23 01:09:20 -06:00
|
|
|
|
|
|
|
pub trait SomeTrait<T>
|
|
|
|
where T: Something
|
2018-03-09 23:57:31 -06:00
|
|
|
+ Sync
|
|
|
|
+ Send
|
|
|
|
+ Display
|
|
|
|
+ Debug
|
|
|
|
+ Copy
|
|
|
|
+ Hash
|
|
|
|
+ Debug
|
|
|
|
+ Display
|
|
|
|
+ Write
|
|
|
|
+ Read
|
|
|
|
+ FromStr
|
2018-02-23 01:09:20 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// #2020
|
|
|
|
impl<'a, 'gcx, 'tcx> ProbeContext<'a, 'gcx, 'tcx> {
|
|
|
|
fn elaborate_bounds<F>(&mut self, bounds: &[ty::PolyTraitRef<'tcx>], mut mk_cand: F)
|
|
|
|
where F: for<'b> FnMut(&mut ProbeContext<'b, 'gcx, 'tcx>,
|
|
|
|
ty::PolyTraitRef<'tcx>,
|
|
|
|
ty::AssociatedItem)
|
|
|
|
{
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
}
|