rust/tests/source/associated-types-bounds-wrapping.rs
2018-03-02 15:07:13 +13:00

6 lines
212 B
Rust

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