rust/tests/target/associated-types-bounds-wrapping.rs

8 lines
220 B
Rust
Raw Normal View History

// 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>;
}