about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2017-05-12 18:57:33 -0600
committerGitHub <noreply@github.com>2017-05-12 18:57:33 -0600
commitcf4fac6ec5add119dafb798790e233e08ba64d01 (patch)
tree43a43c15903e30a424dba1ff8ef23e2aeae3f518 /src/test
parentee1c102cac456d01bd539a2d359d3e7c38e892c4 (diff)
parent68c1ce91701a322601dec0e0c8845e535909f9b2 (diff)
Rollup merge of #41923 - eddyb:issue-41744, r=arielb1
rustc_trans: do not attempt to truncate an i1 const to i1.

Fixes #41744 by skipping the truncation when it'd be a noop anyway.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-41744.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-41744.rs b/src/test/run-pass/issue-41744.rs
new file mode 100644
index 00000000000..276067d7d74
--- /dev/null
+++ b/src/test/run-pass/issue-41744.rs
@@ -0,0 +1,16 @@
+// Copyright 2017 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.
+
+trait Tc {}
+impl Tc for bool {}
+
+fn main() {
+    let _: &[&Tc] = &[&true];
+}