mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
f784fa7bd9
Done by removing all uses of `#![no_core]`, and the reverting the ones that failed. More involved ones are in a later commit.
12 lines
372 B
Rust
12 lines
372 B
Rust
// ignore-tidy-linelength
|
|
|
|
// @!has "$.index[*][?(@.name == 'sealed')]"
|
|
mod sealed {
|
|
// @set sealed_id = "$.index[*][?(@.name=='Sealed')].id"
|
|
pub trait Sealed {}
|
|
}
|
|
|
|
// @count "$.index[*][?(@.name=='Trait')].inner.trait.bounds[*]" 1
|
|
// @is "$.index[*][?(@.name=='Trait')].inner.trait.bounds[0].trait_bound.trait.id" $sealed_id
|
|
pub trait Trait: sealed::Sealed {}
|