blob: 0812b576a19173ed2b0c9ed7e8d4b4ecb9a361b0 [file] [log] [blame] [edit]
#![allow(dead_code)]
#[derive(PartialEq)]
struct Bar;
struct Foo;
trait Super{}
trait Sub: Super {}
impl Super for Bar {}
impl Eq for Bar {}
impl Sub for Foo {}
impl Super for Foo {}