1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#[doc(hidden)]
pub use paste as __paste;

// cargo build => todo
#[cfg(not(what_query))]
#[macro_export]
macro_rules! what {
    ($($args:ident),* $(,)*) => {
        ({
            $(
                let _ = $args;
            )*
            todo!()
        })
    }
}

// cargo what => query type info
#[cfg(what_query)]
#[macro_export]
macro_rules! what {
    ($($args:ident),* $(,)*) => {
        ({
            todo!();

            #[allow(unreachable_code)]
            {
                $(
                    $crate::__paste::paste! {
                        trait [<What_ $args>] {};
                        let _: &dyn [<What_ $args>] = &$args;
                    }
                )*

                trait What {};
                let what;
                let _: &dyn What = &what;
                what
            }
        })
    }
}