10 lines
211 B
Rust
10 lines
211 B
Rust
//@ aux-build: color.rs
|
|
|
|
extern crate color;
|
|
|
|
//@ has "$.index[*].inner.use[?(@.name == 'Red')]"
|
|
pub use color::Color::Red;
|
|
|
|
//@ !has "$.index[*][?(@.name == 'Red')]"
|
|
//@ !has "$.index[*][?(@.name == 'Color')]"
|