Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniq
[breaking-change] This will break any uses of macros that assumed () being a valid literal.
This commit is contained in:
parent
08d6774f39
commit
eb01b17b06
34 changed files with 348 additions and 405 deletions
|
|
@ -1037,10 +1037,9 @@ mod test {
|
|||
}),
|
||||
id: ast::DUMMY_NODE_ID
|
||||
}),
|
||||
output: P(ast::Ty{id: ast::DUMMY_NODE_ID,
|
||||
node: ast::TyNil,
|
||||
span:sp(15,15)}), // not sure
|
||||
cf: ast::Return,
|
||||
output: ast::Return(P(ast::Ty{id: ast::DUMMY_NODE_ID,
|
||||
node: ast::TyTup(vec![]),
|
||||
span:sp(15,15)})), // not sure
|
||||
variadic: false
|
||||
}),
|
||||
ast::NormalFn,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue