mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
35 lines
612 B
Rust
35 lines
612 B
Rust
// check-pass
|
|
#![allow(type_alias_bounds)]
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
pub struct Handle<T, I>(T, I);
|
|
|
|
impl<T, I> Handle<T, I> {
|
|
pub fn get_info(&self) -> &I {
|
|
let Handle(_, ref info) = *self;
|
|
info
|
|
}
|
|
}
|
|
|
|
pub struct BufferHandle<D: Device, T> {
|
|
raw: RawBufferHandle<D>,
|
|
_marker: PhantomData<T>,
|
|
}
|
|
|
|
impl<D: Device, T> BufferHandle<D, T> {
|
|
pub fn get_info(&self) -> &String {
|
|
self.raw.get_info()
|
|
}
|
|
}
|
|
|
|
pub type RawBufferHandle<D: Device> = Handle<<D as Device>::Buffer, String>;
|
|
|
|
pub trait Device {
|
|
type Buffer;
|
|
}
|
|
|
|
fn main() {}
|