Fix an ICE when translating some static expressions.

Creating two identical static expressions involving casts of pointers to arrays
caused an assertion failure in librustc_trans.
This commit is contained in:
Leo Testard 2015-02-06 00:07:05 +01:00
parent eaf4c5c784
commit 47c2091f26
2 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,16 @@
// Copyright 2015 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.
static foo: [uint; 3] = [1, 2, 3];
static slice_1: &'static [uint] = &foo;
static slice_2: &'static [uint] = &foo;
fn main() {}