1
2
3
4
5
6
#![deny(missing_docs)]
//! Dummy crate needs high-level documentation.
/// Dummy public function needs documentation.
pub fn it_works() {
    assert_eq!(1 + 1, 2);
}