Skip to content

Commit 4f8c57d

Browse files
committed
Rehome and rename ui/issues/ tests
1 parent 8e62bfd commit 4f8c57d

File tree

283 files changed

+447
-306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

283 files changed

+447
-306
lines changed

tests/ui/issues/issue-56806.rs renamed to tests/ui/abi/invalid-self-parameter-type-56806.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/56806
12
pub trait Trait {
23
fn dyn_instead_of_self(self: Box<dyn Trait>);
34
//~^ ERROR invalid `self` parameter type

tests/ui/issues/issue-56806.stderr renamed to tests/ui/abi/invalid-self-parameter-type-56806.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0307]: invalid `self` parameter type: `Box<(dyn Trait + 'static)>`
2-
--> $DIR/issue-56806.rs:2:34
2+
--> $DIR/invalid-self-parameter-type-56806.rs:3:34
33
|
44
LL | fn dyn_instead_of_self(self: Box<dyn Trait>);
55
| ^^^^^^^^^^^^^^

tests/ui/issues/issue-68951.rs renamed to tests/ui/array-slice-vec/array-iteration-bitwise-operations-68951.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/68951
12
//@ check-pass
23

34
fn main() {

tests/ui/issues/issue-7784.rs renamed to tests/ui/array-slice-vec/fixed-length-vector-pattern-matching-7784.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/7784
12
//@ run-pass
23

34
use std::ops::Add;

tests/ui/issues/issue-68010-large-zst-consts.rs renamed to tests/ui/array-slice-vec/large-zst-array-compilation-time-68010-.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/68010-
12
//@ build-pass
23

34
fn main() {

tests/ui/issues/issue-54462-mutable-noalias-correctness.rs renamed to tests/ui/array-slice-vec/matrix-row-swap-54462-.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/54462-
12
//@ run-pass
23
//
34
//@ compile-flags: -Ccodegen-units=1 -O

tests/ui/issues/issue-7012.rs renamed to tests/ui/array-slice-vec/static-array-comparison-7012.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/7012
12
//@ run-pass
23
#![allow(non_camel_case_types)]
34
#![allow(non_upper_case_globals)]

tests/ui/issues/issue-8498.rs renamed to tests/ui/array-slice-vec/vector-slice-matching-8498.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/8498
12
//@ run-pass
23

34
pub fn main() {

tests/ui/issues/issue-56870.rs renamed to tests/ui/associated-consts/traits-associated-consts-ice-56870.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/56870
12
//@ build-pass
23
// Regression test for #56870: Internal compiler error (traits & associated consts)
34

tests/ui/issues/issue-78622.rs renamed to tests/ui/associated-types/ambiguous-associated-type-error-78622.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// https://github.com/rust-lang/rust/issues/78622
12
#![crate_type = "lib"]
23

34
struct S;

0 commit comments

Comments
 (0)