]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/associated-const-type-parameter-arrays-2.rs
New upstream version 1.17.0+dfsg1
[rustc.git] / src / test / compile-fail / associated-const-type-parameter-arrays-2.rs
CommitLineData
1a4d82fc 1// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
62682a34 11#![feature(associated_consts)]
85aaf69f 12
62682a34 13pub trait Foo {
9cc50fc6
SL
14 const Y: usize;
15}
16
17struct Abc;
18impl Foo for Abc {
19 const Y: usize = 8;
20}
62682a34 21
9cc50fc6
SL
22struct Def;
23impl Foo for Def {
24 const Y: usize = 33;
62682a34
SL
25}
26
9cc50fc6 27pub fn test<A: Foo, B: Foo>() {
32a655c1
SL
28 let _array = [4; <A as Foo>::Y];
29 //~^ ERROR cannot use an outer type parameter in this context [E0402]
62682a34 30}
223e47cc 31
9cc50fc6
SL
32fn main() {
33}