blob: 11bb6ce1f3a0c7073b385b35e7ea3cc3352b7f28 (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build: color.rs
extern crate color;
// @is "$.index[*][?(@.inner.name == 'Red')].kind" '"import"'
pub use color::Color::Red;
// @!has "$.index[*][?(@.name == 'Red')]"
// @!has "$.index[*][?(@.name == 'Color')]"
|