const-destructure 0.1.3

Destructuring in const contexts on stable Rust.
Documentation
1
2
3
4
5
const fn test<T>(wrap: (T,)) -> T {
    wrap.0
}

fn main() {}