mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
123 B
Rust
11 lines
123 B
Rust
/**
|
|
* A doc comment
|
|
*/
|
|
|
|
fn foo() {
|
|
print("foo"); // print some text
|
|
/// This is a nested function
|
|
fn nested() {}
|
|
}
|
|
|