This commit is contained in:
nora 2022-12-18 11:27:23 +01:00
parent a36bf95c3e
commit 1cb5114557
7 changed files with 226 additions and 69 deletions

View file

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

View file

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