File: invalid-attribute.rs

package info (click to toggle)
rust-derivative 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 724 kB
  • sloc: makefile: 2
file content (23 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#[cfg(feature = "use_core")]
extern crate core;

#[macro_use]
extern crate derivative;

#[derive(Derivative)]
#[derivative(Clone = not_a_string)]
struct Foo1;

#[derive(Derivative)]
#[derivative(Clone = 1+2)]
struct Foo2;

#[derive(Derivative)]
#[derivative(Default(new = "True"))]
struct Foo3;

#[derive(Derivative)]
#[derivative(Debug(bound))]
struct Foo4;

fn main() {}