project-template 0.1.8

A template for Rust project
Documentation
1
2
3
4
5
6
7
8
9
10
#[allow(dead_code)]
pub(super) fn pub_in_super() {
    println!("called `pub_in_super()`");
}

#[cfg(test)]
mod tests {
    #[test]
    fn visibility() { super::pub_in_super(); }
}