index
:
rust
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
test
/
compile-fail
/
missing-return.rs
blob: 34fb4105b8e00620331b3e85c00149e7a50cd372 (
plain
) (
blame
)
1
2
3
4
5
6
7
8
9
// error-pattern: return
fn
f
()
->
int
{
}
fn
main
()
{
f
();
}