2017-02-18 13:11:42 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
trait Dim {
|
|
|
|
fn dim() -> usize;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Dim3 {}
|
|
|
|
|
|
|
|
impl Dim for Dim3 {
|
|
|
|
fn dim() -> usize {
|
|
|
|
3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Vector<T, D: Dim> {
|
2017-08-07 00:08:53 -05:00
|
|
|
entries: [T; D::dim()],
|
2017-06-02 15:20:36 -05:00
|
|
|
//~^ ERROR no function or associated item named `dim` found for type `D` in the current scope
|
2017-08-07 00:08:53 -05:00
|
|
|
_dummy: D,
|
2017-02-18 13:11:42 -06:00
|
|
|
}
|
|
|
|
|
2017-04-21 09:10:22 -05:00
|
|
|
fn main() {}
|