Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-19631.rs
blob: a20df9c9d4cd19400fee61cfac64359ce0261c17 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
trait
PoolManager
{
type
C
;
fn
dummy
(&
self
)
{
}
}
struct
InnerPool
<
M
>
{
manager
:
M
,
}
impl
<
M
>
InnerPool
<
M
>
where M
:
PoolManager
{}
fn
main
()
{}