Skip to content

Commit bcf86da

Browse files
Add issue links
1 parent 8c78c33 commit bcf86da

6 files changed

Lines changed: 12 additions & 6 deletions

tests/ui/higher-ranked/binop-lhs-hrtb-subtyping.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Regression test for <https://github.com/rust-lang/rust/issues/45425>
12
//@ check-pass
23
#![allow(dead_code)]
34
use std::ops::Add;

tests/ui/overloaded/subtyping-both-lhs-and-rhs-in-add-impl.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Regression test for <https://github.com/rust-lang/rust/issues/32008>
12
//@ run-pass
23
#![allow(dead_code)]
34
#![allow(unused_variables)]

tests/ui/reborrow/reborrow-mutable-reference.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Regression test for <https://github.com/rust-lang/rust/issues/28839>
12
//@ run-pass
23

34
pub struct Foo;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Regression test for <https://github.com/rust-lang/rust/issues/2316>
12
enum cat {
23
tabby, calico, tortoiseshell
34
}

tests/ui/resolve/auxiliary/resolve-conflict-local-vs-glob-import-b.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
//! Regression test for <https://github.com/rust-lang/rust/issues/2316>
12
#![allow(unused_imports)]
23

3-
extern crate issue_2316_a;
4+
extern crate resolve_conflict_local_vs_glob_import_a;
45

56
pub mod cloth {
6-
use issue_2316_a::*;
7+
use resolve_conflict_local_vs_glob_import_a::*;
78

89
pub enum fabric {
910
gingham, flannel, calico

tests/ui/resolve/resolve-conflict-local-vs-glob-import.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
//! Regression test for <https://github.com/rust-lang/rust/issues/2316>
12
//@ run-pass
2-
//@ aux-build:issue-2316-a.rs
3-
//@ aux-build:issue-2316-b.rs
3+
//@ aux-build:resolve-conflict-local-vs-glob-import-a.rs
4+
//@ aux-build:resolve-conflict-local-vs-glob-import-b.rs
45

56

6-
extern crate issue_2316_b;
7-
use issue_2316_b::cloth;
7+
extern crate resolve_conflict_local_vs_glob_import_b;
8+
use resolve_conflict_local_vs_glob_import_b::cloth;
89

910
pub fn main() {
1011
let _c: cloth::fabric = cloth::fabric::calico;

0 commit comments

Comments
 (0)