From: Piotr Jawniak Date: Sat, 23 Aug 2014 10:31:48 +0000 (+0200) Subject: Add test for #10618 and #16382 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=ed18baeb495a0f9663f81c3ad9687c775eb24270;p=rust.git Add test for #10618 and #16382 Closes #10618 Closes #16382 --- 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]; +}