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: 4c73a4fd4c9beadf03269f6ce6fc6e0fd2438f0a (
plain
) (
blame
)
1
2
3
4
5
6
7
8
9
10
// xfail-stage0
// error-pattern: return
fn
f
()
->
int
{
}
fn
main
()
{
f
();
}