blob: 07fddb88386d5367003be717cc64fb538d27a555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#![allow(dead_code)]
#[macro_use]
extern crate derive_more;
#[derive(Constructor)]
struct EmptyTuple();
#[derive(Constructor)]
struct EmptyStruct {}
#[derive(Constructor)]
struct EmptyUnit;
#[derive(Constructor)]
struct MyInts(i32, i32);
#[derive(Constructor)]
struct Point2D {
x: i32,
y: i32,
}
|