]> git.lizzy.rs Git - rust.git/blob - tests/target/associated-types-bounds-wrapping.rs
Fix wrapping of bounds in associated types
[rust.git] / tests / target / associated-types-bounds-wrapping.rs
1 // rustfmt-max_width: 100
2 // Test proper wrapping of long associated type bounds
3
4 pub trait HttpService {
5     type WsService: 'static
6         + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
7 }