mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 21:29:32 +00:00
10 lines
213 B
Rust
10 lines
213 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')]"
|