blob: fffc81dd5d6da77a5569b04ccb05b61dbee59567 [file] [log] [blame]
// rustfmt-chain_width: 20
struct Fluent {}
impl Fluent {
fn blorp(&self) -> &Self {
self
}
}
fn main() {
let test = Fluent {};
// should not be wrapped
test.blorp();
test.blorp().blorp();
// should be wrapped
test.blorp().blorp().blorp();
test.blorp().blorp().blorp().blorp();
}