summaryrefslogtreecommitdiffstats
path: root/third_party/rust/derive_more/tests/mul.rs
blob: 706c3ec3e2c64d9aea3846e20bcaeb6e012a31f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(dead_code)]

use derive_more::Mul;

#[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,
}