rust/tests/source/associated-types-bounds-wrapping.rs
2018-06-27 01:36:01 +02:00

5 lines
186 B
Rust

// Test proper wrapping of long associated type bounds
pub trait HttpService {
type WsService: 'static + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
}