diff options
| author | Tamir Duberstein <tamird@gmail.com> | 2015-03-15 13:30:37 -0700 |
|---|---|---|
| committer | Tamir Duberstein <tamird@gmail.com> | 2015-03-16 07:35:24 -0700 |
| commit | c1f6951826c4f99d570aaf9bba321e1bfde0c0de (patch) | |
| tree | 7f1176bcfce0f7287ff80f600321a60777cfbc46 /src/test/auxiliary/pub_static_array.rs | |
| parent | 2522207a99367d6237970be1553649753b2b979e (diff) | |
Regression test for #13077
Closes #13077.
Diffstat (limited to 'src/test/auxiliary/pub_static_array.rs')
| -rw-r--r-- | src/test/auxiliary/pub_static_array.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/auxiliary/pub_static_array.rs b/src/test/auxiliary/pub_static_array.rs new file mode 100644 index 00000000000..4419a5ae83c --- /dev/null +++ b/src/test/auxiliary/pub_static_array.rs @@ -0,0 +1,11 @@ +// 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 <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. + +pub static ARRAY: &'static [u8] = &[1]; |
