This commit is contained in:
nora 2022-12-17 22:17:34 +01:00
parent a9e488f3e3
commit 0f05ef625a
11 changed files with 153 additions and 70 deletions

View file

@ -4,7 +4,3 @@
name = "hello-world"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

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

View file

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