mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
362 B
Plaintext
14 lines
362 B
Plaintext
$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|}
|
|
|