rustc/tests/rustdoc-json/enums/use_variant_foreign.rs
2024-05-08 17:27:53 +02:00

10 lines
213 B
Rust

// 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')]"