]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/impl-wrong-item-for-trait.rs
remove associated_consts feature gate
[rust.git] / src / test / ui / span / impl-wrong-item-for-trait.rs
1 // Copyright 2015 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
12 use std::fmt::Debug;
13
14 trait Foo {
15     fn bar(&self);
16     const MY_CONST: u32;
17 }
18
19 pub struct FooConstForMethod;
20
21 impl Foo for FooConstForMethod {
22     //~^ ERROR E0046
23     //~| NOTE missing `bar` in implementation
24     const bar: u64 = 1;
25     //~^ ERROR E0323
26     //~| NOTE does not match trait
27     const MY_CONST: u32 = 1;
28 }
29
30 pub struct FooMethodForConst;
31
32 impl Foo for FooMethodForConst {
33     //~^ ERROR E0046
34     //~| NOTE missing `MY_CONST` in implementation
35     fn bar(&self) {}
36     fn MY_CONST() {}
37     //~^ ERROR E0324
38     //~| NOTE does not match trait
39 }
40
41 pub struct FooTypeForMethod;
42
43 impl Foo for FooTypeForMethod {
44     //~^ ERROR E0046
45     //~| NOTE missing `bar` in implementation
46     type bar = u64;
47     //~^ ERROR E0325
48     //~| NOTE does not match trait
49     const MY_CONST: u32 = 1;
50 }
51
52 impl Debug for FooTypeForMethod {
53 }
54
55 fn main () {}