blob: 31cdaf43174ef62da0eee0f26da223ea02813cc1 [file] [log] [blame]
#[cfg(feature = "use_core")]
extern crate core;
#[macro_use]
extern crate derivative;
#[derive(Derivative)]
#[derivative(Clone = "does_not_exist")]
struct Foo;
#[derive(Derivative)]
#[derivative(Clone(does_not_exist = "true"))]
struct Bar;
fn main() {}