Skip to content

Commit e74b717

Browse files
committed
Rehome tests/ui/issues/ tests [5/?]
1 parent 2886b36 commit e74b717

File tree

78 files changed

+103
-55
lines changed

Some content is hidden

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

78 files changed

+103
-55
lines changed

tests/ui/issues/issue-8498.rs renamed to tests/ui/array-slice-vec/matching-on-vector-slice-option-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-7784.rs renamed to tests/ui/array-slice-vec/pattern-matching-fixed-length-vectors-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-78622.rs renamed to tests/ui/associated-consts/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;

tests/ui/issues/issue-78622.stderr renamed to tests/ui/associated-consts/ambiguous-associated-type-error-78622.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0223]: ambiguous associated type
2-
--> $DIR/issue-78622.rs:5:5
2+
--> $DIR/ambiguous-associated-type-error-78622.rs:6:5
33
|
44
LL | S::A::<f> {}
55
| ^^^^

tests/ui/issues/issue-77218/issue-77218.fixed renamed to tests/ui/binding/invalid-assignment-in-while-loop-77218.fixed

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/77218
12
//@ run-rustfix
23
fn main() {
34
let value = [7u8];

tests/ui/issues/issue-77218/issue-77218.rs renamed to tests/ui/binding/invalid-assignment-in-while-loop-77218.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/77218
12
//@ run-rustfix
23
fn main() {
34
let value = [7u8];

tests/ui/issues/issue-77218/issue-77218.stderr renamed to tests/ui/binding/invalid-assignment-in-while-loop-77218.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0070]: invalid left-hand side of assignment
2-
--> $DIR/issue-77218.rs:4:19
2+
--> $DIR/invalid-assignment-in-while-loop-77218.rs:5:19
33
|
44
LL | while Some(0) = value.get(0) {}
55
| - ^

tests/ui/issues/issue-8391.rs renamed to tests/ui/binding/match-with-at-binding-8391.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/8391
12
//@ run-pass
23

34
fn main() {

tests/ui/issues/issue-8860.rs renamed to tests/ui/binding/ref-in-function-parameter-patterns-8860.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/8860
12
//@ run-pass
23
// FIXME(static_mut_refs): this could use an atomic
34
#![allow(static_mut_refs)]

tests/ui/issues/issue-77218/issue-77218-2.fixed renamed to tests/ui/binop/invalid-assignment-lhs-in-while-772182.fixed

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/772182
12
//@ run-rustfix
23
fn main() {
34
let value = [7u8];

0 commit comments

Comments
 (0)