Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-58712.rs
blob: 930bec6889bce6bfeb57d023fbbc63495833639a [
file
] [
log
] [
blame
] [
edit
]
struct
AddrVec
<
H
,
A
>
{
h
:
H
,
a
:
A
,
}
impl
<
H
>
AddrVec
<
H
,
DeviceId
>
{
//~^ ERROR cannot find type `DeviceId` in this scope
pub
fn
device
(&
self
)
->
DeviceId
{
//~^ ERROR cannot find type `DeviceId` in this scope
self
.
tail
()
}
}
fn
main
()
{}