blob: 14e07b4123e6eeb88570c0f4127a367f93abfa89 (
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')]"
|