mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 05:57:03 +03:00
10 lines
214 B
Rust
10 lines
214 B
Rust
//@ aux-build: color.rs
|
|
|
|
extern crate color;
|
|
|
|
// @has "$.index[*].inner.import[?(@.name == 'Red')]"
|
|
pub use color::Color::Red;
|
|
|
|
// @!has "$.index[*][?(@.name == 'Red')]"
|
|
// @!has "$.index[*][?(@.name == 'Color')]"
|