about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-02-06 02:13:48 +0800
committerGitHub <noreply@github.com>2018-02-06 02:13:48 +0800
commita405a08d72910c6a4de5636a51ce9cfc9bbbb5fd (patch)
tree3637c78ce1b9ec4f51630c0d27f5a03c5c8f0fe2 /src
parent9dab73773a017d7a560dc677bc55526593145835 (diff)
parentf641ac6ecbdf22b4fc1d3222f6e5920e00bd770e (diff)
downloadrust-a405a08d72910c6a4de5636a51ce9cfc9bbbb5fd.tar.gz
rust-a405a08d72910c6a4de5636a51ce9cfc9bbbb5fd.zip
Rollup merge of #47704 - dsprenkels:issue-44415, r=alexcrichton
Add a regression test for #44415

This PR adds a regression test for issue #44415.

Fixes #44415.
Diffstat (limited to 'src')
-rw-r--r--src/test/compile-fail/issue-44415.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-44415.rs b/src/test/compile-fail/issue-44415.rs
new file mode 100644
index 00000000000..3b7089f4975
--- /dev/null
+++ b/src/test/compile-fail/issue-44415.rs
@@ -0,0 +1,22 @@
+// 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.
+
+#![feature(const_fn)]
+#![feature(core_intrinsics)]
+
+use std::intrinsics;
+
+struct Foo {
+    bytes: [u8; unsafe { intrinsics::size_of::<Foo>() }],
+    //~^ ERROR unsupported cyclic reference between types/traits detected
+    x: usize,
+}
+
+fn main() {}