strict-typing 0.1.0

A procedural macro for ensuring strict type safety.
Documentation
1
2
3
4
5
6
7
8
use strict_typing::strict_types;

#[strict_types]
enum Bad {
    Value(i32),
}

fn main() {}