]> git.lizzy.rs Git - rust.git/blob - tests/source/associated-types-bounds-wrapping.rs
Merge pull request #2820 from scampi/defaults
[rust.git] / tests / source / associated-types-bounds-wrapping.rs
1 // Test proper wrapping of long associated type bounds
2
3 pub trait HttpService {
4     type WsService: 'static + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
5 }