mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-14 09:01:11 +00:00
11 lines
569 B
Text
11 lines
569 B
Text
error: #[salsa::tracked] must also be applied to the impl block for tracked methods
|
|
--> tests/compile-fail/tracked_method_on_untracked_impl.rs:13:41
|
|
|
|
|
13 | fn tracked_method_on_untracked_impl(self, db: &dyn Db) -> u32 {
|
|
| ^^^^
|
|
|
|
error[E0412]: cannot find type `tracked_method_on_untracked_impl` in this scope
|
|
--> tests/compile-fail/tracked_method_on_untracked_impl.rs:2:21
|
|
|
|
|
2 | struct Jar(MyInput, tracked_method_on_untracked_impl);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
|