rust/crates/syntax/test_data/parser/err/0018_incomplete_fn.rs

9 lines
183 B
Rust
Raw Normal View History

2018-08-26 11:04:44 -05:00
impl FnScopes {
fn new_scope(&) -> ScopeId {
let res = self.scopes.len();
self.scopes.push(ScopeData { parent: None, entries: vec![] })
}
fn set_parent
}