blob: b82b6bc7878599b294a5fc8e8c694b14f0d369cd [file] [log] [blame]
#[derive(Clone, Debug)] // OK
struct S;
#[derive(Debug, inline)] //~ ERROR expected derive macro, found built-in attribute `inline`
struct T;
#[derive(inline, Debug)] //~ ERROR expected derive macro, found built-in attribute `inline`
struct U;
fn main() {}