]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/source/associated-types-bounds-wrapping.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / source / associated-types-bounds-wrapping.rs
CommitLineData
f20569fa
XL
1// Test proper wrapping of long associated type bounds
2
3pub trait HttpService {
4 type WsService: 'static + Service<Request = WsCommand, Response = WsResponse, Error = ServerError>;
5}