]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/associated-const-cc-lib.rs
Rollup merge of #28991 - goyox86:goyox86/rustfmting-liblog-II, r=alexcrichton
[rust.git] / src / test / auxiliary / associated-const-cc-lib.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 #![feature(associated_consts)]
12
13 #![crate_type="lib"]
14
15 // These items are for testing that associated consts work cross-crate.
16 pub trait Foo {
17     const BAR: usize;
18 }
19
20 pub struct FooNoDefault;
21
22 impl Foo for FooNoDefault {
23     const BAR: usize = 0;
24 }
25
26 // These test that defaults and default resolution work cross-crate.
27 pub trait FooDefault {
28     const BAR: usize = 1;
29 }
30
31 pub struct FooOverwriteDefault;
32
33 impl FooDefault for FooOverwriteDefault {
34     const BAR: usize = 2;
35 }
36
37 pub struct FooUseDefault;
38
39 impl FooDefault for FooUseDefault {}
40
41 // Test inherent impls.
42 pub struct InherentBar;
43
44 impl InherentBar {
45     pub const BAR: usize = 3;
46 }