mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 03:33:59 +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.
16 lines
465 B
Rust
16 lines
465 B
Rust
// Regression test for <https://github.com/rust-lang/rust/issues/104942>
|
|
|
|
// @set Color = "$.index[*][?(@.name == 'Color')].id"
|
|
pub enum Color {
|
|
Red,
|
|
Green,
|
|
Blue,
|
|
}
|
|
|
|
// @set use_Color = "$.index[*][?(@.inner.import)].id"
|
|
// @is "$.index[*][?(@.inner.import)].inner.import.id" $Color
|
|
// @is "$.index[*][?(@.inner.import)].inner.import.glob" true
|
|
pub use Color::*;
|
|
|
|
// @ismany "$.index[*][?(@.name == 'use_glob')].inner.module.items[*]" $Color $use_Color
|