Files
codeql/rust/ql/test/extractor-tests/generated/Comment/comments.rs
2024-09-30 15:38:59 +02:00

11 lines
123 B
Rust

/**
* A doc comment
*/
fn foo() {
print("foo"); // print some text
/// This is a nested function
fn nested() {}
}