Change type_arg to type_ref func

This commit is contained in:
Fedor Sakharov 2020-05-14 10:14:04 +03:00
parent a55ad20388
commit 7e9396c7eb
No known key found for this signature in database
GPG key ID: 93D436E666BF0FEE
2 changed files with 3 additions and 4 deletions

View file

@ -13,8 +13,8 @@ pub fn name_ref(text: &str) -> ast::NameRef {
ast_from_text(&format!("fn f() {{ {}; }}", text))
}
pub fn type_arg(text: &str) -> ast::TypeArg {
ast_from_text(&format!("impl F<{}> for G {{}}", text))
pub fn type_ref(text: &str) -> ast::TypeRef {
ast_from_text(&format!("impl {} for D {{}};", text))
}
pub fn path_segment(name_ref: ast::NameRef) -> ast::PathSegment {