summaryrefslogtreecommitdiffstats
path: root/vendor/derive_more/tests/mul.rs
blob: 192806032d2d060b4e759c8761b24f64d00e5e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![allow(dead_code)]
#[macro_use]
extern crate derive_more;

#[derive(Mul)]
struct MyInt(i32);

#[derive(Mul)]
struct MyInts(i32, i32);

#[derive(Mul)]
struct Point1D {
    x: i32,
}

#[derive(Mul)]
struct Point2D {
    x: i32,
    y: i32,
}