diff options
| author | bors <bors@rust-lang.org> | 2018-07-26 22:20:17 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-07-26 22:20:17 +0000 |
| commit | 419e60ee9d676a2f17918e7be0a226049a44ffa3 (patch) | |
| tree | ec91335d71a8c5ef2aa5489ad1c2ed5a2c5b6b7b /src/test | |
| parent | 45b48b9b6d70065a16cc119fe934ed342c664c78 (diff) | |
| parent | 01d4cd5aaecef3f944812c396f58c56fcc1449ba (diff) | |
| download | rust-419e60ee9d676a2f17918e7be0a226049a44ffa3.tar.gz rust-419e60ee9d676a2f17918e7be0a226049a44ffa3.zip | |
Auto merge of #52673 - oli-obk:mutable_promoted, r=nagisa,cramertj,estebank
Try to fix an ICE might fix #52671
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/const-eval/promote_mutable_zst_mir_borrowck.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/const-eval/promote_mutable_zst_mir_borrowck.rs b/src/test/ui/const-eval/promote_mutable_zst_mir_borrowck.rs new file mode 100644 index 00000000000..922d7d3ab96 --- /dev/null +++ b/src/test/ui/const-eval/promote_mutable_zst_mir_borrowck.rs @@ -0,0 +1,17 @@ +// Copyright 2018 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. + +// compile-pass + +#![feature(nll)] + +pub fn main() { + let y: &'static mut [u8; 0] = &mut []; +} |
