bless ui tests

This commit is contained in:
gvozdvmozgu 2025-01-11 21:34:58 -08:00
parent 7ca96953b7
commit 3256adeec3
2 changed files with 4 additions and 11 deletions

View file

@ -15,11 +15,3 @@ error[E0624]: method `set_field` is private
...
15 | input.set_field(&mut db).to(23);
| ^^^^^^^^^ private method
warning: unused import: `salsa::prelude`
--> tests/compile-fail/get-set-on-private-input-field.rs:1:5
|
1 | use salsa::prelude::*;
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default

View file

@ -114,10 +114,11 @@ error[E0117]: only traits defined in the current crate can be implemented for ar
|
47 | impl<'db> std::default::Default for [MyTracked<'db>; 12] {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^--------------------
| | |
| | this is not defined in the current crate because arrays are always foreign
| impl doesn't use only types from inside the current crate
| |
| this is not defined in the current crate because arrays are always foreign
|
= note: impl doesn't have any local type before any uncovered type parameters
= note: for more information see https://doc.rust-lang.org/reference/items/implementations.html#orphan-rules
= note: define and implement a trait or new type instead
error[E0308]: mismatched types