summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/associated-types-bounds-wrapping.rs
blob: 8aaeee3b16c7def2e3f45229d20b05fe5d148fea (plain)
1
2
3
4
5
6
// Test proper wrapping of long associated type bounds

pub trait HttpService {
    type WsService: 'static
        + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
}