]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/never-type-rvalues.rs
Auto merge of #47203 - varkor:output-filename-conflicts-with-directory, r=estebank
[rust.git] / src / test / run-pass / never-type-rvalues.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(never_type)]
12 #![allow(dead_code)]
13 #![allow(path_statements)]
14 #![allow(unreachable_patterns)]
15
16 fn never_direct(x: !) {
17     x;
18 }
19
20 fn never_ref_pat(ref x: !) {
21     *x;
22 }
23
24 fn never_ref(x: &!) {
25     let &y = x;
26     y;
27 }
28
29 fn never_pointer(x: *const !) {
30     unsafe {
31         *x;
32     }
33 }
34
35 fn never_slice(x: &[!]) {
36     x[0];
37 }
38
39 fn never_match(x: Result<(), !>) {
40     match x {
41         Ok(_) => {},
42         Err(_) => {},
43     }
44 }
45
46 pub fn main() { }