forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprimitive_impls.rs
37 lines (29 loc) · 993 Bytes
/
primitive_impls.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#![feature(no_core, lang_items)]
#![feature(rustc_attrs)]
#![feature(rustdoc_internals)]
#![no_core]
#![rustc_coherence_is_core]
//@ set impl_i32 = "$.index[?(@.docs=='Only core can do this')].id"
#[lang = "sized"]
trait Sized {}
/// Only core can do this
impl i32 {
//@ set identity = "$.index[?(@.docs=='Do Nothing')].id"
/// Do Nothing
pub fn identity(self) -> Self {
self
}
//@ is "$.index[?(@.docs=='Only core can do this')].inner.impl.items[*]" $identity
}
//@ set Trait = "$.index[?(@.name=='Trait')].id"
pub trait Trait {}
//@ set impl_trait_for_i32 = "$.index[?(@.docs=='impl Trait for i32')].id"
/// impl Trait for i32
impl Trait for i32 {}
/// i32
#[rustc_doc_primitive = "i32"]
mod prim_i32 {}
//@ set i32 = "$.index[?(@.docs=='i32')].id"
//@ is "$.index[?(@.docs=='i32')].name" '"i32"'
//@ is "$.index[?(@.docs=='i32')].inner.primitive.name" '"i32"'
//@ ismany "$.index[?(@.docs=='i32')].inner.primitive.impls[*]" $impl_i32 $impl_trait_for_i32