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