index
:
rust-analyzer
master
[FORK] modified to work on wasm targets
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
crates
/
libsyntax2
/
tests
/
data
/
parser
/
inline
/
0106_break_expr.rs
blob: 1b40946365f261af481851378f1c5ba484673a73 (
plain
)
1
2
3
4
5
6
7
8
fn
foo
()
{
loop
{
break
;
break
'l
;
break
92
;
break
'l
92
;
}
}