]> git.lizzy.rs Git - rust.git/blob - tests/source/associated-types-bounds-wrapping.rs
Merge pull request #1904 from spinda/assoc-types-bounds-fix
[rust.git] / tests / source / 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 + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
6 }