mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 21:55:31 +00:00
10 lines
333 B
Rust
10 lines
333 B
Rust
//@ !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 {}
|