summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/unused_mod.coverage
blob: e1d82f66f7557a287d30743fa1fa4020308d3118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$DIR/auxiliary/unused_mod_helper.rs:
    1|      0|pub fn never_called_function() {
    2|      0|    println!("I am never called");
    3|      0|}

$DIR/unused_mod.rs:
    1|       |#[path = "auxiliary/unused_mod_helper.rs"]
    2|       |mod unused_module;
    3|       |
    4|      1|fn main() {
    5|      1|    println!("hello world!");
    6|      1|}