Skip to content
Merged
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
2 changes: 1 addition & 1 deletion tests/ui/associated-consts/associated-const-trait-bound.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

trait ConstDefault {
const DEFAULT: Self;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

trait Tr1: Sized { type As1; }
trait Tr2<'a>: Sized { type As2; }
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/associated-type-bounds/trait-params.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

use std::iter::Once;
use std::ops::Range;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

#![allow(warnings)]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

fn with_closure<F, A>(_: F)
where F: FnOnce(A, &u32)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

fn with_closure<F, A>(_: F)
where F: FnOnce(A, &u32)
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/closures/closure_promotion.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

fn main() {
let x: &'static _ = &|| { let z = 3; z };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// `MyType: !MyTrait` along with other "fundamental" wrappers.

//@ aux-build:coherence_copy_like_lib.rs
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
// skip-codgen
#![allow(dead_code)]

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/deprecation/derive_on_deprecated.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

#![deny(deprecated)]

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/deprecation/derive_on_deprecated_forbidden.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

#![forbid(deprecated)]

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/dyn-compatibility/by-value-self.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Check that a trait with by-value self is considered dyn-compatible.

//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
#![allow(dead_code)]
#![allow(trivial_casts)]

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/dyn-compatibility/phantom-fn.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Check that `Self` appearing in a phantom fn does not make a trait dyn-incompatible.

//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
#![allow(dead_code)]

trait Baz {
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/variance/variance-use-contravariant-struct-2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// they permit lifetimes to be approximated as expected.

#![allow(dead_code)]
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

struct SomeStruct<T>(fn(T));

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/variance/variance-use-covariant-struct-2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// be shortened.

#![allow(dead_code)]
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass

struct SomeStruct<T>(T);

Expand Down
Loading