blob: a9ad61b9fe35e74cc0e09ef9b58b8dae2c397854 (
plain)
1
2
3
4
5
6
7
8
9
|
//@ 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')]"
|