Skip to content

Commit dc17feb

Browse files
add issue links abd bless
1 parent 010bd8b commit dc17feb

65 files changed

Lines changed: 188 additions & 97 deletions

File tree

Some content is hidden

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

tests/ui/cross-crate/auxiliary/const-fn-evaluated-cross-crate.rs

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

34
const fn foo(i: i32) -> i32 {

tests/ui/cross-crate/auxiliary/construct-extern-struct-with-destructor.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#![crate_name="socketlib"]
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/3012
2+
#![crate_name="construct_extern_struct_with_destructor"]
23
#![crate_type = "lib"]
34

45
pub mod socket {

tests/ui/cross-crate/auxiliary/cross-crate-static-reference-and-field-access.rs

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

34
pub struct SomeType {

tests/ui/cross-crate/auxiliary/cross-crate-trait-inheritance-on-default-method.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#![crate_name="issue_3979_traits"]
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/3979
2+
#![crate_name="cross_crate_trait_inheritance_on_default_method"]
23

34
#![crate_type = "lib"]
45

tests/ui/cross-crate/auxiliary/cross-crate-type-alias-with-nested-destructors.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#![crate_name="issue_2526"]
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/2526
2+
#![crate_name="cross_crate_type_alias_with_nested_destructors"]
23
#![crate_type = "lib"]
34

45
use std::marker;

tests/ui/cross-crate/auxiliary/default-trait-method-reachable-through-trait-object.rs

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

34
#[inline(never)]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/41053
12
pub struct Test;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/4545
12
pub struct S<T>(Option<T>);
23
pub fn mk<T>() -> S<T> { S(None) }

tests/ui/cross-crate/auxiliary/extern-repr-enum-with-discriminant-cast.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/42007
12
#[repr(u8)]
23
pub enum E {
34
B = 1 as u8,

tests/ui/cross-crate/auxiliary/extern-trait-bound-with-array-associated-type.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
//! Auxiliary crate testing this issue https://github.com/rust-lang/rust/issues/48984
12
#![crate_type = "lib"]
2-
#![crate_name = "issue48984aux"]
3+
#![crate_name = "extern_trait_bound_with_array_associated_type"]
34

45
pub trait Foo { type Item; }
56

0 commit comments

Comments
 (0)