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