From ed18baeb495a0f9663f81c3ad9687c775eb24270 Mon Sep 17 00:00:00 2001 From: Piotr Jawniak Date: Sat, 23 Aug 2014 12:31:48 +0200 Subject: [PATCH] Add test for #10618 and #16382 Closes #10618 Closes #16382 --- src/test/run-pass/cast-in-array-size.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/test/run-pass/cast-in-array-size.rs diff --git a/src/test/run-pass/cast-in-array-size.rs b/src/test/run-pass/cast-in-array-size.rs new file mode 100644 index 00000000000..ce5fb672b21 --- /dev/null +++ b/src/test/run-pass/cast-in-array-size.rs @@ -0,0 +1,19 @@ +// Copyright 2014 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + + +// issues #10618 and #16382 +static SIZE: int = 25; + +fn main() { + let _a: [bool, ..1 as uint]; + let _b: [int, ..SIZE as uint] = [1, ..SIZE as uint]; + let _c: [bool, ..'\n' as uint] = [true, ..'\n' as uint]; +} -- 2.44.0