2013-03-06 15:34:44 -06:00
|
|
|
// Copyright 2012-2013 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.
|
|
|
|
|
|
|
|
// Check that non-constant exprs do fail as count in fixed length vec type
|
|
|
|
|
|
|
|
fn main() {
|
2015-01-08 04:54:35 -06:00
|
|
|
fn bar(n: isize) {
|
2015-04-14 07:23:02 -05:00
|
|
|
// FIXME (#24414): This error message needs improvement.
|
2015-01-08 04:54:35 -06:00
|
|
|
let _x: [isize; n];
|
2015-02-22 09:38:22 -06:00
|
|
|
//~^ ERROR no type for local variable
|
2013-03-06 15:34:44 -06:00
|
|
|
}
|
|
|
|
}
|