This commit is contained in:
nora 2022-12-20 17:59:17 +01:00
parent 79b69fafb9
commit 64da92ab9e
7 changed files with 113 additions and 31 deletions

View file

@ -2,6 +2,6 @@ fn unused() {
this_is_required_to_error_haha();
}
fn main() {
other::unused();
loop {}
}
mod other;

View file

@ -1 +1,3 @@
pub(crate) fn unused() {}
pub(crate) fn unused() {
loop {}
}