Migrate generate_trait_from_impl to mutable ast

This commit is contained in:
DropDemBits 2024-02-15 21:09:45 -05:00
parent 115646d7d5
commit eb6d6ba17c
No known key found for this signature in database
GPG key ID: 7FE02A6C1EDFA075
3 changed files with 50 additions and 62 deletions

View file

@ -1147,7 +1147,7 @@ pub mod tokens {
pub(super) static SOURCE_FILE: Lazy<Parse<SourceFile>> = Lazy::new(|| {
SourceFile::parse(
"const C: <()>::Item = ( true && true , true || true , 1 != 1, 2 == 2, 3 < 3, 4 <= 4, 5 > 5, 6 >= 6, !true, *p, &p , &mut p, { let a @ [] })\n;\n\n",
"const C: <()>::Item = ( true && true , true || true , 1 != 1, 2 == 2, 3 < 3, 4 <= 4, 5 > 5, 6 >= 6, !true, *p, &p , &mut p, { let a @ [] })\n;\n\nimpl A for B where: {}",
)
});