fix: warn unused type variables

This commit is contained in:
Shunsuke Shibayama 2023-08-02 15:07:31 +09:00
parent 9734028b21
commit f298db96d1
13 changed files with 307 additions and 51 deletions

View file

@ -2171,7 +2171,7 @@ impl ConstKwArg {
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct ConstArgs {
pos_args: Vec<ConstPosArg>,
var_args: Option<Box<ConstPosArg>>,
pub var_args: Option<Box<ConstPosArg>>,
kw_args: Vec<ConstKwArg>,
paren: Option<(Token, Token)>,
}