Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Regression test for https://github.com/rust-lang/rust/issues/18539
//@ run-pass
// Test that coercing bare fn's that return a zero sized type to
// a closure doesn't cause an LLVM ERROR
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Regression test for https://github.com/rust-lang/rust/issues/47722
//@ check-pass

// Tests that automatic coercions from &mut T to *mut T
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Regression test for https://github.com/rust-lang/rust/issues/33387

//@ run-pass
#![feature(rustc_attrs)]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//@ check-pass
#![allow(dead_code)]
// Regression test for #41936. The coerce-unsized trait check in
// Regression test for https://github.com/rust-lang/rust/issues/41936. The coerce-unsized trait check in
// coherence was using subtyping, which triggered variance
// computation, which failed because it required type info for fields
// that had not (yet) been computed.
Expand Down
Loading