Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
#![allow(dead_code)]
trait Resources {
type Buffer: Copy;
}
#[derive(Copy, Clone)]
struct ConstantBufferSet<R: Resources>(
pub R::Buffer
);
enum It {}
impl Resources for It {
type Buffer = u8;
enum Command {
BindConstantBuffers(ConstantBufferSet<It>)
fn main() {}