Sign in
rust
/
rustfmt
/
7d34cfaf2c31dc90f6dc8fc1cdc001fcbd7ebbfa
/
.
/
tests
/
source
/
associated-types-bounds-wrapping.rs
blob: 464f428c7f9a15a87108df52d0b03cc9c0ba208f [
file
] [
log
] [
blame
]
// Test proper wrapping of long associated type bounds
pub
trait
HttpService
{
type
WsService
:
'
static
+
Service
<
Request
=
WsCommand
,
Response
=
WsResponse
,
Error
=
ServerError
>;
}