2018-08-30 07:18:55 -05:00
|
|
|
//@ run-pass
|
2013-05-03 18:25:04 -05:00
|
|
|
// Check that constant expressions can be used for declaring the
|
2013-03-06 15:34:44 -06:00
|
|
|
// type of a fixed length vector.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
|
2013-03-27 11:58:28 -05:00
|
|
|
pub fn main() {
|
2013-03-06 15:34:44 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
const FOO: usize = 2;
|
|
|
|
let _v: [isize; FOO*3];
|
2013-03-06 15:34:44 -06:00
|
|
|
|
|
|
|
}
|