]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-24947.rs
remove associated_consts feature gate
[rust.git] / src / test / run-pass / issue-24947.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 // #24947 ICE using a trait-associated const in an array size
12
13
14 struct Foo;
15
16 impl Foo {
17     const SIZE: usize = 8;
18 }
19
20 trait Bar {
21     const BAR_SIZE: usize;
22 }
23
24 impl Bar for Foo {
25     const BAR_SIZE: usize = 12;
26 }
27
28 #[allow(unused_variables)]
29 fn main() {
30     let w: [u8; 12] = [0u8; <Foo as Bar>::BAR_SIZE];
31     let x: [u8; 12] = [0u8; <Foo>::BAR_SIZE];
32     let y: [u8; 8] = [0u8; <Foo>::SIZE];
33     let z: [u8; 8] = [0u8; Foo::SIZE];
34 }