Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use oracle::RowValue;

#[test]
fn procmacro_ok_shadow() {
    #[allow(dead_code)]
    enum AnotherResult<T, E> {
        Ok(T),
        Err(E),
    }

    #[allow(unused_imports)]
    use AnotherResult::Ok;

    #[derive(Debug, RowValue)]
    struct Foo {}
}