1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! This is a small crate to test out different ways of rendering required //! features in rustdoc. pub mod a; #[cfg(feature = "foo")] pub mod foo; #[cfg(feature = "bar")] mod bar; #[cfg(feature = "clone")] mod clone; #[cfg(all(feature = "foo", feature = "bar"))] pub mod foobar;