summaryrefslogtreecommitdiffstats
path: root/src/test/ui/uninhabited/exhaustive-wo-nevertype-issue-51221.rs
blob: b59432078350ef94ca277a4ae7ece407557fa8bf (plain)
1
2
3
4
5
6
7
8
9
// check-pass

#![feature(exhaustive_patterns)]

enum Void {}
fn main() {
    let a: Option<Void> = None;
    let None = a;
}