Skip to content

Commit 0875f45

Browse files
committedNov 7, 2023
tests/rustdoc-json: Remove more needless uses of #![no_core].
These were'nt done with regex, but don't require changes to assertions.
1 parent f784fa7 commit 0875f45

File tree

6 files changed

+1
-39
lines changed

6 files changed

+1
-39
lines changed
 

‎tests/rustdoc-json/enums/field_hidden.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// Regression test for <https://github.com/rust-lang/rust/issues/100529>.
22

3-
#![no_core]
4-
#![feature(no_core, lang_items)]
5-
6-
#[lang = "sized"]
7-
trait Sized {}
8-
93
// @has "$.index[*][?(@.name=='ParseError')]"
104
// @has "$.index[*][?(@.name=='UnexpectedEndTag')]"
115
// @is "$.index[*][?(@.name=='UnexpectedEndTag')].inner.variant.kind.tuple" [null]

‎tests/rustdoc-json/enums/kind.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// ignore-tidy-linelength
22

3-
#![feature(no_core, lang_items)]
4-
#![no_core]
5-
6-
#[lang = "sized"]
7-
trait Sized {}
8-
93
pub enum Foo {
104
// @set Unit = "$.index[*][?(@.name=='Unit')].id"
115
// @is "$.index[*][?(@.name=='Unit')].inner.variant.kind" '"plain"'

‎tests/rustdoc-json/enums/tuple_fields_hidden.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
#![feature(no_core, lang_items)]
2-
#![no_core]
3-
4-
#[lang = "sized"]
5-
trait Sized {}
6-
71
// @set 1.1.0 = "$.index[*][?(@.docs=='1.1.0')].id"
82
// @set 2.1.0 = "$.index[*][?(@.docs=='2.1.0')].id"
93
// @set 2.1.1 = "$.index[*][?(@.docs=='2.1.1')].id"

‎tests/rustdoc-json/generic-associated-types/gats.rs

-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
// ignore-tidy-linelength
22

3-
#![no_core]
4-
#![feature(lang_items, no_core, arbitrary_self_types)]
5-
6-
#[lang = "sized"]
7-
pub trait Sized {}
8-
9-
#[lang = "receiver"]
10-
pub trait Receiver {}
11-
123
pub trait Display {}
134

145
pub trait LendingIterator {

‎tests/rustdoc-json/non_lifetime_binders.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,9 @@
33
#![feature(non_lifetime_binders)]
44
#![allow(incomplete_features)]
55

6-
#![no_core]
7-
#![feature(lang_items, no_core)]
8-
9-
#[lang = "sized"]
10-
pub trait Sized {}
11-
126
pub trait Trait {}
137

14-
#[lang = "phantom_data"]
15-
struct PhantomData<T_>;
16-
17-
pub struct Wrapper<T_>(PhantomData<T_>);
8+
pub struct Wrapper<T_>(std::marker::PhantomData<T_>);
189

1910
// @count "$.index[*][?(@.name=='foo')].inner.function.generics.where_predicates[0].bound_predicate.generic_params[*]" 2
2011
// @is "$.index[*][?(@.name=='foo')].inner.function.generics.where_predicates[0].bound_predicate.generic_params[0].name" \"\'a\"

‎tests/rustdoc-json/traits/supertrait.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// ignore-tidy-linelength
22

3-
#![feature(lang_items)]
4-
53
// @set loud_id = "$.index[*][?(@.name=='Loud')].id"
64
pub trait Loud {}
75

0 commit comments

Comments
 (0)