/development/compiler/tests/fixtures/source_corpus/valid/doc-comments.nct
doc-comments.nct
//! File-level docs for source-corpus tooling coverage.
/*! More file-level docs for AST JSON and future LSP hover. */
/// Returns the process exit code.
func main(): i32 {
/// Local binding docs are available to tooling.
let code = 0
return code
}