mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
272 B
Rust
15 lines
272 B
Rust
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() {}
|