]> git.lizzy.rs Git - rust.git/blob - src/test/ui/defaulted-never-note.rs
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / defaulted-never-note.rs
1 // Copyright 2016 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 // We need to opt inot the `!` feature in order to trigger the
12 // requirement that this is testing.
13 #![feature(never_type)]
14
15 #![allow(unused)]
16
17 trait Deserialize: Sized {
18     fn deserialize() -> Result<Self, String>;
19 }
20
21 impl Deserialize for () {
22     fn deserialize() -> Result<(), String> {
23         Ok(())
24     }
25 }
26
27 trait ImplementedForUnitButNotNever {}
28
29 impl ImplementedForUnitButNotNever for () {}
30
31 fn foo<T: ImplementedForUnitButNotNever>(_t: T) {}
32 //~^ NOTE required by `foo`
33
34 fn smeg() {
35     let _x = return;
36     foo(_x);
37     //~^ ERROR the trait bound
38     //~| NOTE the trait `ImplementedForUnitButNotNever` is not implemented
39     //~| NOTE the trait is implemented for `()`
40 }
41
42 fn main() {
43     smeg();
44 }
45