summaryrefslogtreecommitdiffstats
path: root/tests/ui/print_type_sizes/uninhabited.rs
blob: 86fab7b500af08030a7acca69d30b776a5724a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// compile-flags: -Z print-type-sizes --crate-type=lib
// build-pass
// ignore-pass
// ^-- needed because `--pass check` does not emit the output needed.
//     FIXME: consider using an attribute instead of side-effects.

#![feature(never_type)]

pub fn test() {
    let _x: Option<!> = None;
    let _y: Result<u32, !> = Ok(42);
    let _z: Result<!, !> = loop {};
}