Skip to content

Commit b0d90ae

Browse files
committed
Update issue tracking comments to use actual URLs
1 parent b88534d commit b0d90ae

11 files changed

Lines changed: 11 additions & 11 deletions

tests/ui/imports/extern-crate-alias-impl-method.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#14422
1+
// issue: <https://github.com/rust-lang/rust/issues/14422>
22
// Test that we can call an inherently implemented method via aliasing from an extern crate.
33
//@ run-pass
44
#![allow(non_snake_case)]

tests/ui/imports/extern-crate-indirect-fn-ptr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#13620
1+
// issue: <https://github.com/rust-lang/rust/issues/13620>
22
// Test cross crate resolution of an indirect function pointer
33
//@ run-pass
44
//@ aux-build:extern-crate-indirect-fn-ptr-aux-1.rs

tests/ui/imports/extern-crate-no-prefer-dynamic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#14344
1+
// issue: <https://github.com/rust-lang/rust/issues/14344>
22
// Test that we can depend on an `no-prefer-dynamic` crate.
33
//@ run-pass
44
//@ aux-build:extern-crate-no-prefer-dynamic-aux-1.rs

tests/ui/imports/extern-transmute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#15562
1+
// issue: <https://github.com/rust-lang/rust/issues/15562>
22
// Test resolution of `transmute` in an extern block to rust intrinsics.
33
//@ run-pass
44
//@ aux-build:extern-transmute-aux.rs

tests/ui/imports/typeid-cross-crate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#13507
1+
// issue: <https://github.com/rust-lang/rust/issues/13507>
22
// Test cross-crate TypeId stability
33
//@ run-pass
44
#![allow(unused_imports)]

tests/ui/imports/unused-cross-crate-import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#12612
1+
// issue: <https://github.com/rust-lang/rust/issues/12612>
22
// Test that unused `use` declarations involving multiple external crates are handled properly.
33
//@ run-pass
44
#![allow(unused_imports)]

tests/ui/imports/unused-extern-crate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#11224
1+
// issue: <https://github.com/rust-lang/rust/issues/11224>
22
// Test that an unused `extern crate` declaration does not crash the compiler.
33
//@ run-pass
44
//@ aux-build:unused-extern-crate-aux.rs

tests/ui/lint/missing-docs-private-trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#11592
1+
// issue: <https://github.com/rust-lang/rust/issues/11592>
22
// Test that the `missing_docs` lint does not trigger for a private trait.
33
//@ check-pass
44
//! Ensure the private trait Bar isn't complained about.

tests/ui/pattern/box-pattern-nested.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#11552
1+
// issue: <https://github.com/rust-lang/rust/issues/11552>
22
// Test nested box pattern matching inside a larger `match` statement.
33
//@ run-pass
44
#![feature(box_patterns)]

tests/ui/pattern/tuple-struct-cross-crate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// issue: rust-lang/rust#11508
1+
// issue: <https://github.com/rust-lang/rust/issues/11508>
22
// Test pattern matching on a tuple struct defined in an external crate.
33
//@ run-pass
44
//@ aux-build:tuple-struct-cross-crate-aux.rs

0 commit comments

Comments
 (0)