// https://github.com/segeljakt/derive_less/issues/3
#![allow(dead_code)]
#![allow(unused_attributes)]
use derive_less::derive_less;
derive_less! {
#[derive(Debug)] pub struct __ { pub __:__ }
struct S<T: Trait> {
f: T,
}
}
pub trait Trait {}
fn main() {}